#putari-adancimi-container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    color: #333;
}

#putari-adancimi-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #4a90e2;
}

#map-container {
    margin-top: 20px;
}

#map {
    width: 100%;
    height: 400px; /* Ajustați înălțimea după necesități */
    border: 1px solid #ddd;
    border-radius: 8px;
}

.form-step {
    display: flex;
    flex-direction: column;
}

.form-step h3 {
    margin-bottom: 10px;
    color: #4a90e2;
}

.form-step label {
    margin-bottom: 5px;
    font-weight: bold;
}

.form-step input[type="number"],
.form-step select,
.form-step textarea {
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

.form-step textarea {
    min-height: 60px;
}

.form-step input[type="checkbox"] {
    margin-right: 10px;
}

.button-group {
    display: flex;
    justify-content: space-between;
}

.button-group button {
    padding: 10px 15px;
    background-color: #6c7ae0;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    flex: 1;
    margin: 0 5px;
    transition: background-color 0.3s ease;
}

.button-group button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.button-group button:hover:not(:disabled) {
    background-color: #575fcf;
}

/* Responsivitate */
@media (max-width: 800px) {
    #putari-adancimi-container {
        padding: 15px;
    }

    .button-group {
        flex-direction: column;
    }

    .button-group button {
        width: 100%;
        margin: 5px 0;
    }

    #map {
        height: 300px;
    }
}