#showVars {
    accent-color: #61ffad;
    
}

body {
    background-color: #000;
    color: #f1f5f9;
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    position: relative;
}


#slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    object-fit: cover;
}

.slide.active {
    opacity: 1;
}

.container {
    max-width: 80%;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
    background-color: rgba(37, 37, 37, 0.0);
    border-radius: 10px;
    margin-top: 20px;
}

.header {
    text-align: center;
    padding: 4px 0;
}

.header h1 {
    font-size: 2.8rem;
    background: linear-gradient(90deg, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.search-box {
    width: 100%;
}

.search-box input {
    width: 100%;
    padding: 16px;
    background: #252525;
    border: 1px solid #414141;
    color: white;
    border-radius: 32px;
    box-sizing: border-box;
}

.filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px;
}

.filter-group {
    background: rgba(65, 65, 65, 0.8);
    padding: 15px;
    border-radius: 32px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th {
    background: rgba(65, 65, 65, 0.8);
    padding: 15px;
    text-align: left;
}

td {
    padding: 15px;
    border-bottom: 1px solid #414141;
}

tr:nth-child(even) {
    background: rgba(57, 57, 57, 0.6);
}

.type-var {
    color: #61ffad;
}

.type-cmd {
    color: #f59e0b;
}

.type-exec {
    color: #ef4444;
}

.actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    background: #333;
    border: 1px solid #555;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s;
}

.action-btn:hover {
    background: #444;
}

.copy-btn {
    background: #323232;
}

.copy-btn:hover {
    background: #b7b7b7;
}

.favorite-btn {
    background: #323232;
}

.favorite-btn:hover {
    background: #b7b7b7;
}

.favorite-btn.active {
    background: #ef4444; 
}

.favorite-btn.active:hover {
    background: #ff6b6b;
}

.fav-icon, .copy-icon {
    margin-right: 4px;
}

a:link {
    color: #61ffad;
    background-color: transparent;
    text-decoration: none;
}

a:visited {
    color: #ffa3e6;
    background-color: transparent;
    text-decoration: none;
}

a:hover {
    color: #b7b7b7;
    background-color: transparent;
    text-decoration: underline;
}

a:active {
    color: #f68957;
    background-color: transparent;
    text-decoration: underline;
}

#showVars, #showCmds, #showExecs, #showFavorites {
    accent-color: #61ffad;
}


#notificationContainer {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification {
    background-color: #1a1a1a;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    border-left: 4px solid #61ffad;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    opacity: 0;
    transform: translateX(100%);
    animation: slideIn 0.3s forwards, fadeOut 0.3s 2.7s forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

.notification.success {
    border-left-color: #61ffad;
}

.notification.info {
    border-left-color: #3b82f6;
}

.notification.error {
    border-left-color: #ef4444;
}

.support-contact {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    background: rgba(37, 37, 37, 0.9);
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid #414141;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.support-contact:hover {
    background: rgba(65, 65, 65, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.support-contact a {
    color: #61ffad;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.support-contact a:hover {
    color: #ffffff;
    text-decoration: none;
}

.support-contact a::before {
    content: "✉️";
    font-size: 16px;
}