@import url('root.css');
/* Body & General Styling */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    min-height: 100vh; /* Ensure full height */
    display: flex;
    flex-direction: column; /* Flex container for sticky footer */
}

/* Navbar – Sticky to the Top */
.navbar {
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    height: var(--navbar-height);
}

/* Logo Styling */
.logo.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 24px;
}

.logo.navbar-brand img {
    height: 40px; /* Logo Height */
    margin-right: 8px;
    object-fit: contain;
}

.logo.navbar-brand span {
    color: var(--primary-color);
    font-size: 1.2em;
    text-transform: lowercase;
}

/* Footer – Sticky to Bottom */
footer {
    margin-top: auto; /* Pushes footer to the bottom */
    background-color: #000;
    padding: 20px 0;
    text-align: center;
    color: var(--text-muted);
}

/* Footer Links */
footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color);
}

.btn-youtube {
    background-color: var(--youtube-color);
    color: white;
}

.btn-twitch {
    background-color: var(--twitch-color);
    color: white;
}

.btn-tiktok {
    background-color: var(--tiktok-color);
    color: white;
}

.btn-website {
    background-color: var(--website-color);
    color: white;
}

.btn-edit {
    background-color: var(--edit-color);
    color: white;
}

.btn-delete {
    background-color: var(--delete-color);
    color: white;
}