.praktikapaev-form-container {
    max_width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.acf-form-submit {
    text-align: right;
    margin-top: 20px;
}

.acf-form-submit .acf-button {
    background-color: #6EC1E4; /* Primary color from globals */
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.acf-form-submit .acf-button:hover {
    background-color: #5aaacc;
}

.acf-field {
    margin-bottom: 20px;
}

.acf-label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: #333;
}

.acf-input input[type="text"],
.acf-input input[type="date"],
.acf-input textarea,
.acf-input select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.acf-input input:focus,
.acf-input textarea:focus,
.acf-input select:focus {
    border-color: #6EC1E4;
    outline: none;
}

/* Specific field tweaks based on keys if needed */
.acf-field[data-name="kuupaev"] {
    width: 50%; /* Make date field smaller */
}

@media (max-width: 768px) {
    .acf-field[data-name="kuupaev"] {
        width: 100%;
    }
}
