/**
 * ANSES Calendar - Public Styles
 */

/* Calendar Wrapper */
.anses-calendar-wrapper {
    max-width: 100%;
    margin: 20px 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.anses-calendar-widget {
    max-width: 100%;
}

/* Title */
.anses-calendar-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.anses-calendar-period {
    font-size: 18px;
    font-weight: 400;
    color: #7f8c8d;
    margin-left: 10px;
}

/* DNI Search */
.anses-dni-search-wrap {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
}

.anses-dni-search-wrap label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #34495e;
}

.anses-dni-select {
    width: 100%;
    max-width: 200px;
    padding: 10px 15px;
    font-size: 16px;
    border: 2px solid #bdc3c7;
    border-radius: 4px;
    background: #fff;
    transition: border-color 0.3s;
}

.anses-dni-select:focus {
    outline: none;
    border-color: #3498db;
}

/* Calendar Table */
.anses-calendar-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    overflow-x: auto;
    display: block;
}

@media (min-width: 768px) {
    .anses-calendar-table {
        display: table;
    }
}

.anses-calendar-table thead {
    background: #34495e;
    color: #fff;
}

.anses-calendar-table th {
    padding: 12px 10px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.anses-calendar-table th.anses-col-dni {
    width: 15%;
    min-width: 80px;
}

.anses-calendar-table tbody tr {
    border-bottom: 1px solid #ecf0f1;
    transition: background-color 0.2s;
}

.anses-calendar-table tbody tr:hover {
    background-color: #f8f9fa;
}

.anses-calendar-table tbody tr.highlight {
    background-color: #e8f4f8 !important;
    box-shadow: 0 0 0 2px #3498db;
}

.anses-calendar-table td {
    padding: 10px;
    font-size: 14px;
}

.anses-col-dni {
    font-weight: 600;
    background: #ecf0f1;
}

.anses-col-date {
    text-align: center;
}

/* Date Styles */
.anses-date {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    background: #e8f4f8;
    color: #2c3e50;
    font-weight: 500;
}

.anses-date.anses-today {
    background: #2ecc71;
    color: #fff;
    font-weight: 700;
    border: 2px solid #27ae60;
}

.anses-date.anses-past {
    background: #ecf0f1;
    color: #95a5a6;
    text-decoration: line-through;
}

.anses-no-date {
    color: #bdc3c7;
    font-style: italic;
}

/* Calendar Footer */
.anses-calendar-footer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ecf0f1;
    text-align: center;
    color: #7f8c8d;
    font-size: 12px;
}

/* DNI Search Widget */
.anses-dni-search-widget {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.anses-search-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.anses-search-form {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.anses-form-group {
    flex: 1;
}

.anses-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #34495e;
}

.anses-dni-input {
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    border: 2px solid #bdc3c7;
    border-radius: 4px;
    background: #fff;
}

.anses-search-btn {
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #3498db;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.anses-search-btn:hover {
    background: #2980b9;
}

.anses-search-result {
    margin-top: 20px;
    padding: 15px;
    background: #e8f4f8;
    border-radius: 6px;
    font-size: 16px;
}

.anses-search-result.error {
    background: #fee;
    color: #c00;
}

.anses-search-result.success {
    background: #dff0d8;
    color: #3c763d;
}

/* Next Payment Widget */
.anses-next-payment {
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 8px;
    text-align: center;
}

.anses-payment-label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.anses-payment-date {
    display: block;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.anses-payment-countdown {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 14px;
}

/* Empty State */
.anses-calendar-empty,
.anses-no-data {
    padding: 40px 20px;
    text-align: center;
    color: #95a5a6;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .anses-calendar-table {
        font-size: 12px;
    }

    .anses-calendar-table th,
    .anses-calendar-table td {
        padding: 8px 5px;
    }

    .anses-date {
        padding: 4px 8px;
        font-size: 12px;
    }

    .anses-search-form {
        flex-direction: column;
        align-items: stretch;
    }

    .anses-search-btn {
        width: 100%;
    }
}
