.siteconfig-container {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 20px 0;
}

.siteconfig-container h2 {
    margin-top: 0;
    color: #333;
}

.config-content dl {
    margin: 0;
}

.config-content dt {
    font-weight: bold;
    margin-top: 10px;
}

.config-content dd {
    margin: 5px 0 0 20px;
    color: #666;
}

/* Authentication Section Styles */
.auth-section {
    margin-bottom: 30px;
    padding: 15px;
    background-color: #f9f9f9;
    border-left: 4px solid #0066cc;
    border-radius: 4px;
}

.auth-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.auth-message {
    margin: 0;
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.auth-status.authenticated .auth-message {
    color: #28a745;
}

.auth-status.authenticated .auth-message.success {
    color: #28a745;
}

/* Button Styles */
button.btn-login,
button.btn-logout {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-login {
    background-color: #0066cc;
    color: white;
}

.btn-login:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 102, 204, 0.3);
}

.btn-login:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 102, 204, 0.3);
}

.btn-logout {
    background-color: #6c757d;
    color: white;
}

.btn-logout:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(108, 117, 125, 0.3);
}

.btn-logout:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(108, 117, 125, 0.3);
}

/* Rates Container Styles */
.rates-container {
    margin-top: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.rates-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.rates-table thead {
    background-color: #0066cc;
    color: white;
}

.rates-table th {
    padding: 12px;
    text-align: left;
    font-weight: 600;
    border: 1px solid #0052a3;
}

.rates-table td {
    padding: 12px;
    border: 1px solid #ddd;
}

.rates-table tbody tr {
    transition: background-color 0.2s ease;
}

.rates-table tbody tr:hover {
    background-color: #f0f0f0;
}

.rates-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.fund-name {
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
}

.rate-date {
    text-align: center;
    color: #666;
}

.yield-value {
    text-align: right;
    font-weight: 600;
    color: #0066cc;
}

.loading-message,
.error-message,
.info-message {
    padding: 15px;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
}

.loading-message {
    background-color: #e7f3ff;
    color: #0066cc;
    border: 1px solid #b3d9ff;
}

.error-message {
    background-color: #ffe7e7;
    color: #cc0000;
    border: 1px solid #ffb3b3;
}

.info-message {
    background-color: #e7ffe7;
    color: #009900;
    border: 1px solid #b3ffb3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .auth-section {
        margin-bottom: 20px;
        padding: 12px;
    }
    
    .auth-status {
        flex-direction: column;
        align-items: flex-start;
    }
    
    button.btn-login,
    button.btn-logout {
        width: 100%;
        text-align: center;
    }
    
    .rates-container {
        margin-top: 15px;
        padding: 10px;
        overflow-x: auto;
    }
    
    .rates-table {
        font-size: 12px;
    }
    
    .rates-table th,
    .rates-table td {
        padding: 8px;
    }
    
    .fund-name {
        max-width: 150px;
    }
}
