@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s;
}

.loading-text {
    margin-top: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #2d3748;
    letter-spacing: 2px;
    opacity: 0;
    transform: scale(0.5);
}

.loading-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px) rotate(90deg);
    animation: assembleText 0.5s forwards;
}

.dark .loading-text {
    color: #4a5568;
}

@keyframes assembleText {
    to {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}

.dark .loader-wrapper {
    background: #1a1a1a;
}

.loader {
    width: 64px;
    height: 64px;
    position: relative;
    background: #2d3748;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(45, 55, 72, 0.3);
    animation: pulse 1.5s ease-in-out infinite;
}

.loader:before, .loader:after {
    content: '';
    position: absolute;
    border-radius: 50%;
    animation: ripple 1.5s ease-in-out infinite;
}

.loader:before {
    width: 100%;
    height: 100%;
    background: rgba(45, 55, 72, 0.3);
    animation-delay: 0.2s;
}

.loader:after {
    width: 80%;
    height: 80%;
    background: #2d3748;
    top: 10%;
    left: 10%;
    animation-delay: 0.4s;
}

@keyframes pulse {
    0% { transform: scale(0.8); }
    50% { transform: scale(1.1); }
    100% { transform: scale(0.8); }
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.dark .loader,
.dark .loader:after {
    background: #4a5568;
}

.dark .loader:before {
    background: rgba(74, 85, 104, 0.3);
}

.loader-hidden {
    opacity: 0;
    pointer-events: none;
}

body {
    overflow-x: hidden;
}
input, textarea {
    background-color: transparent; /* Use transparent or matching theme colors */
    color: inherit; /* Inherit text color */
}
#main-content {
    transition: margin-left 0.3s ease-in-out;
}

/* Remove Sidebar Styles */
#sidebar {
    display: none;
}

#result {
    display: none;
    text-align: center;
    position: relative;
    z-index: 3;
    font-size: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--light-gray);
}

#cookie-form {
    height: 60px;
    width: 100%;
    overflow-y: scroll;
    padding: 10px;
    font-size: 12px;
    margin-top: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--light-gray-70);
    white-space: nowrap;
   /* background-color: #fff;*/
    border-radius: 4px;
    border-color: #fff;
}

#json-data {
    height: 40px;
    width: 100%;
    padding: 10px;
    font-size: 11px;
    margin-top: 0 auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    border-radius: 4px;
    box-sizing: border-box;
    overflow: scroll;
}

#prefixOfCommands input[type="text"],
#adminOfCommands input[type="text"] {
    width: 100%;
    padding: 10px;
    border-radius: 7px;
    border: 1px solid var(--light-gray-70);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: var(--light-gray);
    font-size: 14px;
    font-family: Arial, sans-serif;
    text-align: left;
}

input[type="tite"],
input[type="appState"] {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    padding: 10px;
    font-size: 12px;
    margin-top: 5px;
    color: var(--light-gray);
    border: 1px solid var(--light-gray-70);
    white-space: nowrap;
    background-color: #3A3B3C;
    border-radius: 4px;
    box-sizing: border-box;
}

.footer {
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
    animation: heartbeat 1.3s ease-in-out infinite;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}
.link {
      color: #000;
      text-decoration: none;
      transition: color 0.3s;
    }

    .link:hover {
      color: #90CAF9;
    }

.submit {
    font-size: 9px;
    color: #3A3B3C;
    margin-top: 0px;
    background-color: #2d3748;
    text-align: center;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#submitButton {
    width: 100%;
    height: 40px;
    padding: 10px;
    border-radius: 7px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #2d3748;
    font-size: 14px;
    font-family: Arial Black;
    font-weight: bold;
    color: #fff;
    resize: vertical;
    transition: all 0.3s ease;
}

#submitButton:hover {
    background-color: #4a5568;
}

.dark #submitButton {
    background-color: #1a202c;
    color: #fff;
}

.dark #submitButton:hover {
    background-color: #2d3748;
}
/*HAHAHAAHHHAHAHAHAHAHA*/
.session-user {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            background-color: #fff;
            padding: 10px;
            border-radius: 8px;
            width: 100%;
        }
        .session-user img {
            border-radius: 50%;
            width: 32px;
            height: 32px;
            margin-right: 10px;
        }
        #session-list {
            margin-top: 20px;
        }
.sticky-header {
    background-color: #355c7d;
    padding: 10px;
    text-align: center;
    color: white;
    position: sticky;
    top: 0;
    z-index: 10;
}
.robot-icon-svg {
    width: 24px;
    height: 24px;
}
#navbarLinks {
    background: none; /* Remove background color */
    border-radius: 20px;  /* Keep curved navbar edges */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);  /* Subtle shadow for the navbar */
}

a {
    display: inline-block;
    text-decoration: none;
    color: white;
    font-weight: bold;
    border-radius: 10px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

a:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}