﻿.theme-color {
    color: #5ce09e;
}

.bg-theme {
    background-color: #5ce09e;
}

.bg-dark {
    background-color: rgba(21,7,30, 0.8);
}

body {
    background-color: #15071e;
    color: #fdf8f3;
}

.justification-section {
    border-left: 2px solid #5ce09e;
    margin: 1rem 0;
    padding-left: 1rem;
}

/* Menu styles */
#menu {
    position: fixed;
    right: -300px;
    top: 0;
    width: 300px;
    height: 100%;
    background-color: rgba(21,7,30, 0.95);
    transition: right 0.3s ease;
    z-index: 1000;
    padding: 2rem;
    overflow-y: auto;
}

    #menu.active {
        right: 0;
    }

.more-domains-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 999;
}

.close-menu {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: #5ce09e;
    cursor: pointer;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    display: none;
    z-index: 999;
}

    .menu-overlay.active {
        display: block;
    }
