/* about-modal.css */
#aboutModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    justify-content: center;
    align-items: center;
}

#aboutModal .modal-content {
    background: white;
    padding: 25px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

#aboutModal .about-content {
    margin: 20px 0;
}

#aboutModal .about-section {
    margin-bottom: 20px;
}

#aboutModal .about-section h3 {
    color: #2c3e50;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

#aboutModal .contact-info a {
    color: #0d6efd;
    text-decoration: none;
}

#aboutModal .contact-info a:hover {
    text-decoration: underline;
}

#aboutModal .btn-close {
    background: #f44336;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    float: right;
}
.version-info {
    font-size: 12px;
    color: #6c757d;
    text-align: center;
    margin: 20px 0 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}