@font-face {
    font-family: "TahomaXP";
    src: local("Tahoma"), url('https://fonts.cdnfonts.com/s/84760/Tahoma.woff') format('woff');
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Login Page Styles */
.login-body {
    font-family: "TahomaXP", sans-serif;
    background: url('https://images.pexels.com/photos/133081/pexels-photo-133081.jpeg') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    animation: zoomBackground 15s infinite alternate;
}

@keyframes zoomBackground {
    0% { background-size: 100% 100%; }
    50% { background-size: 110% 110%; }
    100% { background-size: 100% 100%; }
}

.login-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    animation: pulseOverlay 5s infinite;
}

@keyframes pulseOverlay {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.4; }
}

.login-container {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.2);
    width: 90%;
    max-width: 450px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes glow {
    0% { box-shadow: 0 0 20px rgba(0, 102, 255, 0.5); }
    100% { box-shadow: 0 0 50px rgba(0, 170, 255, 0.8); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

.login-header {
    text-align: center;
    margin-bottom: 25px;
}

.logo-spin {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 10px rgba(0, 170, 255, 0.8));
    animation: orbitSpin 8s infinite linear, glowPulse 2s infinite ease-in-out;
}

@keyframes orbitSpin {
    0% {
        transform: rotate(0deg) translateX(10px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(10px) rotate(-360deg);
    }
}

@keyframes glowPulse {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(0, 170, 255, 0.8));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(0, 170, 255, 1));
        transform: scale(1.1);
    }
}

.login-container h1 {
    font-size: 36px;
    color: #fff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 102, 255, 0.8);
    letter-spacing: 2px;
}

.tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-top: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeIn 2s infinite alternate;
}

@keyframes fadeIn {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-box {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}

.input-box:focus {
    outline: none;
    border-color: #00ccff;
    box-shadow: 0 0 15px rgba(0, 204, 255, 0.6);
    background: rgba(255, 255, 255, 0.2);
}

.input-box::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.file-upload {
    margin: 10px 0;
    color: white;
    text-align: center;
}

.file-upload input[type="file"] {
    display: none;
}

.file-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(45deg, rgba(0, 102, 204, 0.8), rgba(0, 170, 255, 0.6));
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: clamp(12px, 3.5vw, 16px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.4);
}

.file-label:hover {
    background: linear-gradient(45deg, rgba(0, 170, 255, 0.9), rgba(0, 102, 204, 0.7));
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 170, 255, 0.6);
}

.btn {
    width: 100%;
    padding: 12px;
    font-size: clamp(14px, 4vw, 18px);
    border: none;
    cursor: pointer;
    border-radius: 30px;
    margin: 10px 0;
    font-weight: bold;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: linear-gradient(45deg, #00aaff, #0066cc);
    color: white;    
    padding: 14px;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.5);
}
.btn-primary-save {
    background: linear-gradient(45deg, #00aaff, #0066cc);
    color: white;
    max-width: 230px;
    padding: 14px;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.5);
}
.btn-primary-save:hover {
    background: linear-gradient(45deg, #0077cc, #004a99);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.7);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #0077cc, #004a99);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.7);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #00ccff;
    padding: 12px;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0, 204, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(0, 204, 255, 0.2);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 204, 255, 0.5);
}

.login-footer {
    margin-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.login-footer a {
    color: #00ccff;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.login-footer a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 204, 255, 0.8);
}

/* Popup Styles */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    padding: 30px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    z-index: 100;
    overflow-y: auto;
    display: none;
    text-align: center;
}

.popup h2 {
    margin: 0 0 20px;
    font-size: clamp(20px, 6vw, 28px);
    color: #003366;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.popup h3 {
    margin: 20px 0 10px;
    font-size: clamp(16px, 5vw, 22px);
    color: #004080;
}

.popup p {
    font-size: clamp(14px, 4vw, 18px);
    color: #333;
    margin-bottom: 15px;
}

.popup ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.popup ul li {
    font-size: clamp(12px, 3.5vw, 16px);
    color: #333;
    margin-bottom: 10px;
}

.popup select {
    width: 100%;
    max-width: 300px;
    padding: 12px;
    margin: 15px 0;
    border: 2px solid #003366;
    border-radius: 25px;
    font-size: clamp(14px, 4vw, 16px);
    background: #f0f0f0;
    color: #003366;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup select:hover, .popup select:focus {
    border-color: #00aaff;
    box-shadow: 0 0 10px rgba(0, 170, 255, 0.5);
    outline: none;
}

.qr-code {
    margin: 20px auto;
    padding: 15px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    text-align: -webkit-center;
}

.crypto-address {
    font-family: monospace;
    font-size: clamp(12px, 3.5vw, 16px);
    color: #003366;
    word-break: break-all;
    margin: 15px 0;
    padding: 10px;
    background: #f0f0f0;
    border-radius: 10px;
    display: none;
}

.close-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.5);
}

.close-btn:hover {
    background: #cc0000;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(204, 0, 0, 0.7);
}

.history-item {
    padding: 10px;
    margin: 8px auto;
    background: #f0f0f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: clamp(12px, 3.5vw, 16px);
    max-width: 600px;
    color: #333;
}

.history-item:hover {
    background: #008001;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.history-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.history-item .delete-btn:hover {
    background: #cc0000;
}

.editor-item {
    padding: 10px;
    margin: 8px auto;
    background: #f0f0f0;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    max-width: 600px;
}

.editor-item input {
    padding: 5px;
    border: 1px solid #003366;
    border-radius: 5px;
}

.editor-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.editor-item .delete-btn:hover {
    background: #cc0000;
}

.epg-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.epg-item {
    padding: 10px;
    margin: 5px 0;
    background: #f0f0f0;
    border-radius: 5px;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99;
    display: none;
}

/* Player Page Styles */
.player-body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100vh;
    transition: background-color 0.3s ease;
}

.player-body.light {
    background-color: #f0f2f5;
    color: #1a2a44;
}

.player-body.dark {
    background-color: #1e1e1e;
    color: #d9d9d9;
}

.container {
    display: flex;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
}

.sidebar {
    width: 15%;
    padding: 10px;
    transition: width 0.3s ease, background 0.3s ease, height 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.sidebar.hidden {
    width: 0;
    padding: 0;
    overflow: hidden;
}

.player-body.light .sidebar {
    background: #ffffff;
    border-right: 1px solid #d1d9e6;
}

.player-body.dark .sidebar {
    background: #2a2a2a;
    border-right: 1px solid #404040;
}

.time-date {
    position: sticky;
    top: 0;
    padding: 12px;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin-bottom: 15px;
    text-align: center;
    z-index: 1;
}

.player-body.light .time-date { color: #1a2a44; }
.player-body.dark .time-date { color: #d9d9d9; }

#categoryFilter {
    width: calc(100% - 5px);
    padding: 10px 14px;
    margin: 0 10px 15px 0;
    border-radius: 25px;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-size: clamp(12px, 3.5vw, 16px);
    background: rgba(0, 0, 0, 0.2);
    color: inherit;
}

#categoryFilter:focus {
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.search-bar {
    width: calc(100% - 5px);
    padding: 10px 14px;
    margin: 0 10px 15px 0;
    border-radius: 25px;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: sticky;
    top: 0;
    z-index: 1;
    font-size: clamp(12px, 3.5vw, 16px);
}

.player-body.light .search-bar {
    background: rgba(0, 0, 0, 0.2);
    color: #1a2a44;
}

.player-body.dark .search-bar {
    background: #333333;
    color: #d9d9d9;
}

.search-bar:focus {
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.recently-watched {
    margin-bottom: 15px;
}

.recently-watched h3 {
    font-size: clamp(14px, 4vw, 18px);
    margin-bottom: 10px;
}

#recentList {
    max-height: 150px;
    overflow-y: auto;
}

.channel-list {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
    scrollbar-width: none;
}

.channel {
    padding: 10px;
    margin: 5px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    font-size: clamp(12px, 3.5vw, 14px);
}

.player-body.light .channel {
    background: #e6e8eb;
    color: #1a2a44;
}

.player-body.dark .channel {
    background: rgba(0, 0, 0, 0.3);
    color: #d9d9d9;
}

.channel:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.channel img {
    width: clamp(30px, 10vw, 40px);
    height: clamp(30px, 10vw, 40px);
    margin-right: 10px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid #e0e0e0;
}

.channel.playing {
    background: linear-gradient(45deg, #00cc00, #00ff00);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 204, 0, 0.5);
    font-weight: bold;
}

.player-body.light .channel.favorited {
    background: linear-gradient(45deg, #cdba31, #51ad22);
    color: #1a2a44;
}

.player-body.dark .channel.favorited {
    background: linear-gradient(45deg, #cdba31, #51ad22);
    color: #d9d9d9;
}

.channel-name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 50px;
}

.favorite-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: clamp(12px, 4vw, 16px);
    padding: 0 5px;
    transition: all 0.3s ease;
}

.player-body.light .favorite-btn {
    color: #4a5568;
}

.player-body.dark .favorite-btn {
    color: #a0aec0;
}

.favorite-btn:hover {
    transform: scale(1.2);
}

.content {
    flex: 1;
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100vh;
    transition: background-color 0.3s ease, width 0.3s ease;
}

.player-body.light .content {
    background: #f0f2f5;
}

.player-body.dark .content {
    background: #1e1e1e;
}

.tv-frame {
    width: 100%;
    height: 100%;
    background: #4a4a4a;
    border: none;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.tv-screen {
    width: 100%;
    height: 100%;
    border: none;
    background: black;
    position: relative;
    z-index: 2;
    object-fit: cover;
}

.interference {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.interference img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.controls {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.history-toggle, .favorites-toggle, .playlist-toggle, .theme-toggle, .fullscreen-toggle, .pip-toggle, .epg-toggle {
    width: clamp(30px, 10vw, 40px);
    height: clamp(30px, 10vw, 40px);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#qualitySelector, #sleepTimer {
    padding: 5px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.4);
    color: rgba(0, 0, 0, 0.5);
    border: none;
    font-size: clamp(12px, 3vw, 14px);
    cursor: pointer;
}

#qualitySelector:hover, #sleepTimer:hover {
    background: rgba(255, 255, 255, 0.4);
}

.history-toggle:hover, .favorites-toggle:hover, .playlist-toggle:hover, .theme-toggle:hover, .fullscreen-toggle:hover, .pip-toggle:hover, .epg-toggle:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.history-toggle::after, .favorites-toggle::after, .playlist-toggle::after, .theme-toggle::after, .fullscreen-toggle::after, .pip-toggle::after, .epg-toggle::after {
    content: attr(title);
    position: absolute;
    top: 100%;
    margin-top: 5px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 8px;
    border-radius: 5px;
    font-size: clamp(10px, 3vw, 12px);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.history-toggle:hover::after, .favorites-toggle:hover::after, .playlist-toggle:hover::after, .theme-toggle:hover::after, .fullscreen-toggle:hover::after, .pip-toggle:hover::after, .epg-toggle:hover::after {
    opacity: 1;
}

.loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: inherit;
    font-size: clamp(14px, 4vw, 18px);
    text-align: center;
}

.hidden {
    display: none;
}

/* Sidebar Footer */
.sidebar-footer {
    position: sticky;
    bottom: 10px;
    display: flex;
    justify-content: space-around;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.sidebar-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
}

.player-body.light .sidebar-icon { color: #1a2a44; }
.player-body.dark .sidebar-icon { color: #d9d9d9; }

.sidebar-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Ad Popup Styles */
.ad-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 90%;
    animation: fadeInAd 0.5s ease-in-out;
}

@keyframes fadeInAd {
    from { opacity: 0; transform: translateY(100%); }
    to { opacity: 1; transform: translateY(0); }
}

.ad-popup a {
    color: #00ccff;
    text-decoration: none;
    margin: 0 10px;
}

.ad-popup a:hover {
    text-decoration: underline;
}

.ad-popup button {
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.ad-popup button:hover {
    background: #cc0000;
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        height: 40%;
        border-right: none;
        border-bottom: 1px solid #d1d9e6;
    }

    .player-body.dark .sidebar {
        border-bottom: 1px solid #404040;
    }

    .sidebar.hidden {
        height: 0;
        padding: 0;
    }

    .content {
        width: 100%;
        height: 60%;
    }

    .controls {
        top: 5px;
        right: 5px;
        gap: 8px;
    }

    .login-container {
        padding: 30px 20px;
    }

    .logo-spin {
        width: 80px;
        height: 80px;
    }

    .input-box, .btn, .file-label {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .sidebar {
        height: 50%;
    }

    .content {
        height: 50%;
    }

    .channel img {
        width: 25px;
        height: 25px;
    }

    .controls {
        gap: 5px;
    }

    .history-toggle, .favorites-toggle, .playlist-toggle, .theme-toggle, .fullscreen-toggle, .pip-toggle, .epg-toggle {
        width: 25px;
        height: 25px;
    }

    .history-toggle svg, .favorites-toggle svg, .playlist-toggle svg, .theme-toggle svg, .fullscreen-toggle svg, .pip-toggle svg, .epg-toggle svg {
        width: 16px;
        height: 16px;
    }

    .close-btn {
        width: 25px;
        height: 25px;
        font-size: 16px;
    }

    .ad-popup {
        padding: 10px 15px;
        font-size: clamp(12px, 3vw, 14px);
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .sidebar {
        width: 40%;
        height: 100%;
        border-right: 1px solid #d1d9e6;
        border-bottom: none;
    }

    .player-body.dark .sidebar {
        border-right: 1px solid #404040;
        border-bottom: none;
    }

    .sidebar.hidden {
        width: 0;
        height: 100%;
    }

    .content {
        width: 60%;
        height: 100%;
    }

    .channel {
        padding: 6px;
    }

    .channel img {
        width: 30px;
        height: 30px;
    }

    .channel-name {
        min-width: 80px;
    }

    .favorite-btn {
        padding: 0 3px;
    }
}

.playlist-toggle-container {
    padding: 10px 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.3);
}

.playlist-toggle-container label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: clamp(12px, 3.5vw, 16px);
}

.player-body.light .playlist-toggle-container label {
    color: #1a2a44;
}

.player-body.dark .playlist-toggle-container label {
    color: #d9d9d9;
}

.playlist-toggle-container input[type="checkbox"] {
    margin-right: 10px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}
