/**
 * My Account Page Styles
 * Custom styles for saved data management
 */

.pdk-my-account-saved-data {
    max-width: 800px;
}

.pdk-my-account-saved-data h2 {
    font-size: 1.75rem;
    color: #2C1F4A;
    margin-bottom: 10px;
}

.pdk-my-account-saved-data > p {
    color: #666;
    margin-bottom: 30px;
}

.pdk-form-section {
    background: #f9f9f9;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pdk-form-section.pdk-prisoner-data {
    border-left: 4px solid #2C1F4A;
}

.pdk-form-section.pdk-sender-data {
    border-left: 4px solid #D4AF37;
}

.pdk-form-section h3 {
    margin: 0 0 5px 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2C1F4A;
}

.pdk-form-section.pdk-sender-data h3 {
    color: #D4AF37;
}

.pdk-form-section .form-description {
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
}

.pdk-form-section .form-row {
    margin-bottom: 15px;
}

.pdk-form-section label {
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.pdk-form-section label .required {
    color: #dc3545;
}

.pdk-form-section .input-text,
.pdk-form-section select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.pdk-form-section .input-text:focus,
.pdk-form-section select:focus {
    border-color: #2C1F4A;
    outline: none;
    box-shadow: 0 0 0 2px rgba(44, 31, 74, 0.1);
}

/* Kantyna search results */
.pdk-kantyna-results {
    position: relative;
    z-index: 10;
}

.pdk-search-results {
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 5px;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pdk-kantyna-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s ease;
}

.pdk-kantyna-item:last-child {
    border-bottom: none;
}

.pdk-kantyna-item:hover {
    background-color: #f5f5f5;
}

.pdk-kantyna-item strong {
    color: #2C1F4A;
    display: block;
    margin-bottom: 3px;
}

.pdk-kantyna-item small {
    color: #666;
}

.pdk-no-results {
    padding: 12px 15px;
    color: #999;
    font-style: italic;
}

.pdk-selected-kantyna {
    margin-top: 10px;
    padding: 10px;
    background: #e8f5e9;
    border: 1px solid #4caf50;
    border-radius: 4px;
    color: #2e7d32;
}

/* Submit button */
.pdk-saved-data-form button[type="submit"] {
    background: #2C1F4A;
    color: white;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pdk-saved-data-form button[type="submit"]:hover {
    background: #1a1230;
}

/* Responsive */
@media (max-width: 768px) {
    .pdk-form-section {
        padding: 15px;
    }

    .pdk-my-account-saved-data h2 {
        font-size: 1.5rem;
    }

    .pdk-form-section h3 {
        font-size: 1.1rem;
    }
}
