/* Settings Modal Styles */
.settings-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.settings-modal.show {
    display: flex;
}

.settings-modal-content {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slide-down 0.3s ease-out;
}

.settings-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid #e5e7eb;
}

.settings-modal-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.settings-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
    padding: 4px;
    line-height: 1;
}

.settings-modal-close:hover {
    color: #111827;
}

.settings-modal-body {
    padding: 24px;
}

.settings-section {
    margin-bottom: 24px;
}

.settings-section:last-child {
    margin-bottom: 0;
}

.settings-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.settings-section-title i {
    margin-right: 8px;
    color: #6b7280;
}

.info-grid {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 8px;
    align-items: center;
}

.info-label {
    font-weight: 500;
    color: #4b5563;
}

.info-value {
    background-color: #f3f4f6;
    padding: 8px 12px;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    color: #1f2937;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.support-info p {
    margin: 0 0 8px 0;
    color: #374151;
}

.support-info p i {
    margin-right: 8px;
    color: #6b7280;
    width: 20px;
    text-align: center;
}

@keyframes slide-down {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
} 