/* Container width control */
.container {
    max-width: 700px !important;
}

/* Privacy page uses wider container */
.container-privacy {
    max-width: 900px !important;
}

a.tab {
    padding: 5px;
    line-height: 5px;
}

/* GbitCode logo frame styles */
.gbit-logo-frame {
    display: inline-block;
    background-color: #000;
    padding: 8px;
    border-radius: 12px;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 2px 4px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.gbit-logo-frame:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow:
        0 10px 15px rgba(0, 0, 0, 0.2),
        0 4px 6px rgba(0, 0, 0, 0.1);
}

.gbit-logo-frame img {
    display: block;
}

/* Privacy page specific styles */
.privacy-section {
    margin-bottom: 2rem;
}

.privacy-section h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #2563eb;
}

.privacy-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.privacy-section p,
.privacy-section li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.privacy-section ul {
    list-style-type: disc;
    margin-left: 1.5rem;
}

/* Mobile-friendly container padding */
@media (max-width: 640px) {
    .container,
    .container-privacy {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Ensure tabs scroll on mobile */
.tabs-boxed {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Touch-friendly form controls */
@media (max-width: 640px) {
    .btn,
    .input,
    .select {
        min-height: 44px;
    }
}
