/**
 * Media Page Styles
 * Banner and tabs styled by calendar.css
 * This file contains only media-specific styles
 */

/* Container */
.media-container {
    padding: 16px 12px;
    padding-bottom: calc(12vh + 40px);
    min-height: calc(100vh - 56px - 60px); /* Banner + tabs */
}

/* Tab Content - Override calendar.css */
.tab-content {
    display: none;
    flex-direction: column;
}

.tab-content.active {
    display: block;
}

/* Breadcrumb Navigation */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 4px;
    margin-bottom: 12px;
    overflow-x: auto;
    white-space: nowrap;
}

.breadcrumb-item {
    color: #888888;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.breadcrumb-item:hover {
    color: #00E5FF;
}

.breadcrumb-item.active {
    color: #00E5FF;
    font-weight: 600;
}

.breadcrumb-separator {
    color: #2a2e32;
    font-size: 12px;
}

/* Sub-tabs (Albums / Photos within Gallery) */
.sub-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    padding: 0 4px;
}

.sub-tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: #1a1d1f;
    border: 1px solid #2a2e32;
    border-radius: 10px;
    color: #888888;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sub-tab-btn i {
    font-size: 16px;
    transition: all 0.3s ease;
}

.sub-tab-btn.active {
    background: rgba(0, 229, 255, 0.1);
    border-color: rgba(0, 229, 255, 0.3);
    color: #00E5FF;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.sub-tab-btn.active i {
    filter: drop-shadow(0 0 4px rgba(0, 229, 255, 0.6));
}

.sub-tab-btn:not(.active):hover {
    background: #20232a;
    border-color: rgba(0, 229, 255, 0.2);
    color: #b0b0b0;
}

/* Albums Grid (2-col, ~180px tiles) */
.albums-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

/* When showing both grids (in subfolders) */
.albums-grid + .photos-grid {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #2a2e32;
}

.album-card {
    aspect-ratio: 1 / 1;
    background: #1a1d1f;
    border: 1px solid #2a2e32;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.album-card:hover {
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
    transform: translateY(-2px);
}

.album-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-card .album-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(to top, rgba(18, 20, 22, 0.95), transparent);
}

.album-card .album-name {
    font-size: 14px;
    font-weight: 600;
    color: #00E5FF;
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.album-card .album-count {
    font-size: 12px;
    color: #888888;
}

/* Photos Grid (3-col, ~117px tiles) */
.photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.photo-card {
    aspect-ratio: 1 / 1;
    background: #1a1d1f;
    border: 1px solid #2a2e32;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.photo-card:hover {
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
    transform: translateY(-2px);
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-card.loading {
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-card.loading i {
    color: #2a2e32;
    font-size: 24px;
    filter: drop-shadow(0 0 4px rgba(0, 229, 255, 0.4));
}

/* Placeholder Content */
.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    color: #888888;
    text-align: center;
}

.placeholder-content i {
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.3));
}

.placeholder-content h2 {
    font-size: 20px;
    font-weight: 600;
    color: #00E5FF;
    margin-bottom: 8px;
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
}

.placeholder-content p {
    font-size: 14px;
    color: #888888;
}

/* Loading Spinner */
.loading-spinner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.6));
}

/* Bottom Controls */
.bottom-controls {
    position: fixed;
    bottom: 12vh;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(18, 20, 22, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid #2a2e32;
    z-index: 90;
}

.control-left {
    flex: 1;
}

.control-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Inline Cloud Settings */
.cloud-settings-inline {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cloud-settings-inline .info-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #444;
    color: #00E5FF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    flex-shrink: 0;
}

.cloud-settings-inline .info-btn:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: #00E5FF;
}

.cloud-settings-inline .toggle-button-group {
    display: flex;
    background: #30363d;
    border-radius: 6px;
    border: 1px solid #444;
    overflow: hidden;
}

.cloud-settings-inline .toggle-button-group .toggle-btn {
    padding: 6px 10px;
    background: transparent;
    border: none;
    color: #e1e4e8;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border-right: 1px solid #444;
    position: relative;
    min-width: 32px;
    text-align: center;
}

.cloud-settings-inline .toggle-button-group .toggle-btn:last-child {
    border-right: none;
}

.cloud-settings-inline .toggle-button-group .toggle-btn:hover {
    background: rgba(0, 229, 255, 0.1);
}

.cloud-settings-inline .toggle-button-group .toggle-btn.active {
    background: #00E5FF;
    color: #0d1117;
    font-weight: 600;
}

/* Lease Status Indicator */
#leaseStatus {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #b0b0b0;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

#leaseStatus:hover {
    background-color: rgba(0, 229, 255, 0.1);
}

#statusDot {
    font-size: 8px;
    color: #888;
}

#statusDot.awake {
    color: #00ff88;
    filter: drop-shadow(0 0 4px rgba(0, 255, 136, 0.6));
}

#statusDot.waking {
    color: #ffaa00;
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Photo Viewer Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(4px);
}

.photo-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    animation: modalFade 0.3s ease-out;
}

@keyframes modalFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(42, 46, 50, 0.9);
    border: 1px solid rgba(0, 229, 255, 0.3);
    color: #00E5FF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    z-index: 10;
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.4));
}

.modal-close:hover {
    background-color: rgba(0, 229, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.6);
}

.photo-viewer {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 16px 100px;
    overflow: hidden;
}

.photo-viewer img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
}

.photo-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(18, 20, 22, 0.95), transparent);
    backdrop-filter: blur(10px);
}

.photo-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #00E5FF;
    margin: 0 0 4px 0;
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
}

.photo-info p {
    font-size: 13px;
    color: #888888;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .media-container {
        padding: 12px 8px;
        padding-bottom: calc(12vh + 40px);
    }

    .sub-tabs {
        gap: 8px;
    }

    .sub-tab-btn {
        padding: 10px 12px;
        font-size: 13px;
    }

    .sub-tab-btn i {
        font-size: 14px;
    }

    .album-card .album-name {
        font-size: 13px;
    }

    .photo-viewer {
        padding: 60px 12px 100px;
    }

    .photo-info {
        padding: 16px;
    }
}

@media (max-width: 360px) {
    .albums-grid {
        gap: 6px;
    }

    .photos-grid {
        gap: 6px;
    }

    .sub-tab-btn span {
        display: none;
    }

    .sub-tab-btn {
        padding: 10px;
    }
}

/* Empty State */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    color: #888888;
    text-align: center;
    padding: 40px 20px;
}

.empty-state i {
    font-size: 48px;
    color: #2a2e32;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.3));
}

.empty-state h3 {
    font-size: 18px;
    font-weight: 600;
    color: #00E5FF;
    margin: 0 0 8px 0;
}

.empty-state p {
    font-size: 14px;
    color: #888888;
    margin: 0;
}

/* Files Tab Styles */
.files-grid {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background-color: #1a1d1f;
    border-radius: 8px;
    overflow: hidden;
}

.file-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background-color: #2a2e32;
    border: 1px solid #2a2e32;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-item:hover {
    background-color: #20232a;
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
    transform: translateY(-1px);
}

.file-item:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.file-item:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.file-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #888888;
    position: relative;
}

.file-icon i {
    font-size: 18px;
    filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.3));
    transition: all 0.3s ease;
}

.file-item:hover .file-icon i {
    color: #00E5FF;
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.6));
}

.file-info {
    flex: 1;
    min-width: 0;
}

.file-name {
    font-size: 14px;
    font-weight: 600;
    color: #e1e4e8;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-details {
    font-size: 12px;
    color: #888888;
}

/* FAB Create Button */
.fab-btn {
    position: fixed;
    bottom: calc(12vh + 16px);
    right: 16px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00E5FF, #0099CC);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 229, 255, 0.4);
    transition: all 0.3s ease;
    z-index: 100;
    display: none;
}

.fab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 229, 255, 0.6);
}

.fab-btn:active {
    transform: translateY(0);
}

/* Docs Tab Styles */
.docs-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background-color: #1a1d1f;
    border-radius: 8px;
    overflow: hidden;
}

.doc-item {
    display: flex;
    align-items: center;
    padding: 16px;
    background-color: #2a2e32;
    border: 1px solid #2a2e32;
    cursor: pointer;
    transition: all 0.3s ease;
}

.doc-item:hover {
    background-color: #20232a;
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
    transform: translateY(-1px);
}

.doc-item:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.doc-item:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.doc-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #888888;
}

.doc-icon i {
    font-size: 18px;
    filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.3));
    transition: all 0.3s ease;
}

.doc-item:hover .doc-icon i {
    color: #00E5FF;
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.6));
}

.doc-info {
    flex: 1;
    min-width: 0;
}

.doc-name {
    font-size: 14px;
    font-weight: 600;
    color: #e1e4e8;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.doc-date {
    font-size: 12px;
    color: #888888;
}

/* Search Container */
.search-container {
    position: sticky;
    top: 0;
    background-color: #1a1d1f;
    border-bottom: 1px solid #2a2e32;
    z-index: 10;
}

.search-input-container {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background-color: #2a2e32;
    border-radius: 8px;
    border: 1px solid #2a2e32;
    margin: 16px;
    transition: all 0.3s ease;
}

.search-input-container:focus-within {
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.search-input-container i {
    color: #00E5FF;
    font-size: 16px;
    filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.4));
}

.search-input-container input {
    background: transparent;
    border: none;
    outline: none;
    flex: 1;
    padding: 0;
    font-size: 14px;
    color: #e1e4e8;
}

.search-input-container input::placeholder {
    color: #888888;
}

/* Context Menu */
.context-menu {
    position: fixed;
    background: white;
    border: 1px solid #e1e4e8;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    min-width: 160px;
    z-index: 1000;
}

.context-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    color: #24292e;
}

.context-menu-item:hover {
    background-color: #f6f8fa;
}

.context-menu-item i {
    width: 16px;
    color: #586069;
}

.context-menu-divider {
    height: 1px;
    background-color: #e1e4e8;
    margin: 8px 0;
}

/* Modal Styles */
.modal-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #e1e4e8;
}

.modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #24292e;
}

.modal-body {
    padding: 20px;
}

.modal-body label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #24292e;
    margin-bottom: 8px;
}

.modal-body input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d1d5da;
    border-radius: 6px;
    font-size: 14px;
}

.modal-body input:focus {
    outline: none;
    border-color: #0366d6;
    box-shadow: 0 0 0 3px rgba(3, 102, 214, 0.1);
}

.modal-footer {
    display: flex;
    gap: 12px;
    padding: 20px;
    border-top: 1px solid #e1e4e8;
    justify-content: flex-end;
}

.btn-primary, .btn-secondary {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: #0366d6;
    color: white;
    border: 1px solid #0366d6;
}

.btn-primary:hover {
    background: #0256cc;
}

.btn-secondary {
    background: white;
    color: #586069;
    border: 1px solid #d1d5da;
}

.btn-secondary:hover {
    background: #f6f8fa;
}

/* Lease Modal Styles */
.setting-group {
    margin-bottom: 24px;
}

.setting-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #24292e;
    margin-bottom: 12px;
}

.toggle-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.toggle-btn {
    padding: 8px 16px;
    border: 1px solid #d1d5da;
    background: white;
    color: #586069;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    font-weight: 500;
}

.toggle-btn:hover {
    background: #f6f8fa;
}

.toggle-btn.active {
    background: #0366d6;
    color: white;
    border-color: #0366d6;
}

.setting-description {
    margin-top: 16px;
    padding: 12px;
    background: #f6f8fa;
    border-radius: 6px;
    font-size: 12px;
    color: #586069;
}

.setting-description p {
    margin: 0 0 8px 0;
}

.setting-description p:last-child {
    margin: 0;
}

/* Inline Lease Controls */
.lease-controls {
    margin-top: 24px;
    padding: 20px;
    background: white;
    border: 1px solid #e1e4e8;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lease-controls-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e1e4e8;
}

.lease-controls-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #24292e;
}

.lease-status-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #586069;
    padding: 4px 8px;
    background: #f6f8fa;
    border-radius: 4px;
}

.lease-status-inline i {
    font-size: 8px;
    color: #888;
}

.lease-status-inline i.awake {
    color: #00ff88;
    filter: drop-shadow(0 0 2px rgba(0, 255, 136, 0.6));
}

.lease-status-inline i.waking {
    color: #ffaa00;
    animation: pulse 1s ease-in-out infinite;
}

/* New Cloud Settings Layout */
.cloud-settings {
    position: fixed;
    bottom: 80px;
    left: 16px;
    right: 16px;
    background: rgba(26, 29, 31, 0.95);
    border: 1px solid #2a2e32;
    border-radius: 12px;
    padding: 16px;
    backdrop-filter: blur(10px);
    z-index: 10;
    max-width: 600px;
    margin: 0 auto;
}

.cloud-settings-row {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
}

.info-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #444;
    color: #00E5FF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    flex-shrink: 0;
}

.info-btn:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: #00E5FF;
}

.toggle-button-group {
    display: flex;
    background: #30363d;
    border-radius: 8px;
    border: 1px solid #444;
    overflow: hidden;
}

.toggle-button-group .toggle-btn {
    padding: 8px 12px;
    background: transparent;
    border: none;
    color: #e1e4e8;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border-right: 1px solid #444;
    position: relative;
}

.toggle-button-group .toggle-btn:last-child {
    border-right: none;
}

.toggle-button-group .toggle-btn:hover {
    background: rgba(0, 229, 255, 0.1);
}

.toggle-button-group .toggle-btn.active {
    background: #00E5FF;
    color: #0d1117;
    font-weight: 600;
}

.cloud-status {
    flex-shrink: 0;
    font-size: 13px;
    color: #e1e4e8;
    font-weight: 500;
    min-width: 80px;
    text-align: right;
}

.cloud-status.active {
    color: #00E5FF;
}

.cloud-status.asleep {
    color: #8b949e;
}

/* Help modal styles */
.help-section {
    margin-bottom: 20px;
}

.help-section:last-child {
    margin-bottom: 0;
}

.help-section h4 {
    color: #24292e;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.help-section p {
    color: #586069;
    font-size: 13px;
    margin: 0 0 6px 0;
    line-height: 1.4;
}

.help-section p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments for cloud settings */
@media (max-width: 480px) {
    .cloud-settings {
        left: 12px;
        right: 12px;
        padding: 12px;
    }
    
    .cloud-settings-row {
        gap: 12px;
    }
    
    .toggle-button-group .toggle-btn {
        padding: 6px 8px;
        font-size: 12px;
    }
    
    .cloud-status {
        font-size: 12px;
        min-width: 60px;
    }
    
    .info-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .cloud-settings-row {
        gap: 8px;
    }
    
    .toggle-button-group .toggle-btn {
        padding: 6px;
        font-size: 11px;
    }
}
