/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
/*    box-sizing: border-box;  */
}

/* Set a base font size and styles */
body {
    font-family: 'Roboto-Light', sans-serif;
    font-size: 14px;
}

/* CSS for metallic background with diagonal gradient */
body {
/*    background: linear-gradient(135deg, #004040, #000000);  */
        background: linear-gradient(135deg, #003030, #000000);
    background-size: 100% 100%;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100vh;
            margin: 0;
            background-color: grey;
/*    animation: gradientAnimation 5s linear infinite; */
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

.fade-in-element {
    position: relative;
    opacity: 0; /* Start with zero opacity */
    animation: fadeIn 5s ease-in-out forwards; /* Apply the fadeIn animation */
    display: flex;
    flex-direction: column;
    align-items: center;
}

#logo {
    max-width: 60%; /* Adjust the size of the logo */
    max-height: 20vh;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}



.centered-text {
    display: flex;
    flex-direction: column;
    font-family: 'Roboto-Light', sans-serif;
    color: #FFFFFF;
    font-weight: normal;
    font-size: 2.25vh; /* Font size of the letter */
    align-items: center;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

        .enter-button {
            background-color: #3498db;
            font-family: 'Roboto-Light', sans-serif;
            font-weight: normal;
            font-size: 2.25vh; /* Font size of the letter */
            color: white;
            padding: 5px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
            transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
                margin: 0 auto; /* Center horizontally */

        }


        /* Apply hover effect */
        .enter-button:hover {
            background-color: #2980b9;
            transform: scale(1.05);
        }

/* Define styles for the custom class */
/* Apply styles to the container div */
.level-container {
    display: inline-flex; /* Use inline-flex to align items horizontally */
    align-items: center; /* Align items vertically in the flex container */
}

.level-label {
    color: white;
    /* Add any other styles you need */
    margin-right: 10px; /* Example margin */
    margin-top: 15px; /* Example margin */
    font-size: 1.5vh; /* Example font size */
    display: block; /* Ensure it's treated as a block element */
}

/* Apply styles to the select element */
#gameLevel {
    /* Add any other styles you need */
    font-size: 1.25vh; /* Example font size */
    margin-top: 15px; /* Example margin */

}

/* HEADER SECTION */
/* CSS for your header section container */
.header-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    height: 4.5vh; /* Set your desired fraction of viewport height */
    overflow: hidden;
}

header {
    /* Menu and Logo Section (5%) */
    color: #fff; /* Text color */
    font-family: 'Roboto-Light', sans-serif;
    font-size: 2vh; /* Font size of the letter */
    font-weight: normal; /* Font weight of the letter */
    text-align: center;
    border-bottom: 1px solid #666; /* Add a 1px solid border at the bottom */
    overflow: hidden;

}



.centered-image {
    max-width: 100%;
    max-height: 4.25vh;
    margin-top: 0px;
}

/* Container for header content */
.header-content {
    display: flex;
    align-items: center; /* Align content vertically in the container */
    justify-content: space-between; /* Add space between text and logo */
}


/* Text style */
.header-content p {
    margin: 0; /* Remove default margin for paragraphs */
}

/* Define the styles for each content section */
.left-content {
    flex: 1; /* Equal width for all content sections */
    flex-direction: row;
    text-align: left; /* Center text within each section */
    font-size: 1.5vh;
    word-wrap: break-word;
    margin-left: 5px;
}
.token-info {
    display: flex;
    align-items: center; /* Vertical alignment of items */
}

.game-label {
    display: block; /* Make the label a block element */
    font-family: 'Roboto-Light', sans-serif;
    font-size: 1.7vh; /* Adjust font size as needed */
    font-weight: normal; /* Adjust font weight as needed */
    color: white; /* Your desired color for the label */
    margin-bottom: 5px; /* Adjust margin as needed to separate the label and value */
        word-wrap: break-word;
        max-width: 6vh;
}

.game-token {
    font-family: 'Roboto-Light', sans-serif;
    font-size: 2.25vh; /* Your desired font size for game_token */
    font-weight: bold;
    color: yellow; /* Your desired color for game_token */
}

.center-content {
    flex: 1; /* Equal width for all content sections */
    text-align: center; /* Center text within each section */
    font-size: 2.8vh;
}

.right-content {
    flex: 1; /* Equal width for all content sections */
    text-align: right; /* Center text within each section */
}


.arrow {
    font-size: 1.25rem; /* Adjust the size as needed */
    color: #fff; /* Change the color as desired */
    margin: 0 1rem; /* Adjust the spacing between circles and arrows */
    font-weight: bold; /* Make the arrow character bold */
}


/* WORD-IN-PROGRESS SECTION  */
/* This is the section where the word-in-progress is displayed  */
.wip-content-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    height: 11vh; /* Set your desired fraction of viewport height */
    margin-bottom: 0px;
    overflow: hidden;
}

.content {
    /* Content Section (20%) */
/*    background-color: #333; */
    color: #fff;
    padding: 0px;
    border-bottom: 1px solid #666; /* Add a 1px solid border at the bottom */
    overflow: hidden;
}

.wip {
    color: #fff; /* Text color */
    font-family: 'Roboto-Light', sans-serif;
    font-size: 2vh; /* Font size of the letter */
    font-weight: normal; /* Font weight of the letter */
    text-align: left;
    margin: 0px; /* Add spacing between tiles */
    margin-bottom: 0px;
}


/* CSS for letter tiles */
.letter-tiles {
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 12vh;
    max-width: 100%;
    margin-bottom: 15px;
}

.letter-tile {
    width: 7vw;
    height: auto;
    min-width: 10px; /* Set a minimum width for each tile */
    min-height: 30px; /* Set a minimum height for each tile */
/*    background-color: #555; */
    color: #fff; /* Text color */
    font-family: 'Roboto-Light', sans-serif;
    font-size: 4.3vh; /* Font size of the letter */
    font-weight: normal; /* Font weight of the letter */
    text-align: center;
    line-height: 5vh; /* Center the text vertically */
    margin: 5px; /* Add spacing between tiles */
    margin-top: 5px;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.8); /* Add a subtle bottom-right shadow */
}

.letter-tile.bouncing {
    animation: jump 0.9s ease-in-out;
}

@keyframes jump {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes blink {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}

.blinking {
  animation: blink is infinite; /* Adjust the duration as needed */
}

/* CSS for upside-down animation */
@keyframes invert {
  0%, 50% {
    transform: rotateX(0deg);
  }
  100% {
    transform: rotateX(180deg);
  }
}

/* Apply the animation to the tiles with a delay */
.letter-tile.invert {
  animation: invert 1.5s ease-in-out;
}

/* Additional styling for the container to handle the perspective */
.letter-tiles-container {
  perspective: 1000px; /* Adjust the perspective as needed */
}


/* Hidden content with display: none */
.hidden-element {
    display: none;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.blinking {
    animation: blink 3s linear infinite; /* Change '2s' to the desired blink interval in seconds */
}


/* This is where the Ongoing-Status shows. aka "guide"  Content Section (5%) */
/* CSS for your guide section container */
.guide-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-center;
    height: 10vh; /* Set your desired fraction of viewport height */
    overflow: hidden;
    margin-top: 0px;
}

.status-and-image-container {
    display: flex;
    align-items: center; /* Center items vertically */
        width: 100%; /* Occupy full width */

    justify-content: center;
}

.guide-words3 {
    margin: 0 auto; /* Remove default margin for better centering */
}

.guide {
    color: #fff;
    padding: 2px;
    margin-top: 0px;

}

/* Apply the hidden-element class to hide the content */
.section-content.hidden-element {
    display: none;
}

.guide-words {
    color: #ff0;
    font-family: 'Roboto-Italic', sans-serif;
    font-size: 2.1vh;
    text-align: center;
    margin: 3px;
}

.guide-words2 {
    color: #ff0;
    font-family: 'Roboto-Light', sans-serif;
    font-size: 1.7vh;
    text-align: center;
    margin: 3px;
    word-wrap: break-word;
}

.guide-words3 {
    color: #fff;
    font-family: 'Roboto-Light', sans-serif;
    font-size: 2vh;
    text-align: center;
    margin: 0 auto;
    word-wrap: break-word;
}

.image-button-container {
    cursor: pointer;
    display: flex;
    justify-content: right; /* Use 'flex-end' to move it to the right edge */
    margin-left: 10px;
}

.image-button {
    /* Add styles for the image, such as width and height */
    width: 30px;
    height: 20px;
}

        /* Styling for modal and overlay */
        #modalOverlay {
            display: none;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
            position: fixed;
            opacity: 1;
        }

    #modal {
        display: flex;
    flex-direction: column; /* Ensure it's a column layout */
    align-items: flex-end;   /* Align items to the end (right) */
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -45%);
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
        width: 90%;
        max-width: 100%;
        max-height: 90vh;
        overflow-y: auto;
        font-size: 1.75vh;
        line-height: 1.6;
    }

#closeButton {
    position: fixed;
    top: 2vh;
    right: 5vw;
    cursor: pointer;
    font-size: 20px;
    color: #555;
}

        /* Styling for modal and overlay */
        #logoModalOverlay {
            display: none;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
            position: fixed;
            opacity: 1;
        }

    #logoModal {
        display: flex;
    flex-direction: column; /* Ensure it's a column layout */
    align-items: flex-end;   /* Align items to the end (right) */
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -45%);
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
        width: 90%;
        max-width: 100%;
        max-height: 90vh;
        overflow-y: auto;
        font-size: 1.75vh;
        line-height: 1.6;
    }

#logoCloseButton {
    position: fixed;
    top: 2vh;
    right: 5vw;
    cursor: pointer;
    font-size: 20px;
    color: #555;
}


/* ACTION CARDS SECTION  */
.super-tiles-keyboard-players-history {
    flex: 50vh;
}

.refresh-button {
    background-color: #3498db;
    color: white;
    padding: 0px 0px;
    border: none;
    width: 50px;
    height: 15px;
    border-radius: 2px;
    cursor: pointer;
    text-align: center;
    font-family: 'Roboto-Light', sans-serif;
    font-weight: normal;
    font-size: 1.4vh;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.new-action-tiles {
    color: #fff;
    padding: 3px;
    cursor: pointer;
}

.selected {
    background-color: green !important;
    color: white;
}

.action-container{
    display: flex;
    flex-direction: column;
    justify-content: flex;
    height: 14vh; /* Set your desired fraction of viewport height */
    overflow: hidden;
}


.action-tiles {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    margin-top: 0px;
    margin-bottom: 0px;
}

.enlarge .action-tile {
    transform: scale(1.25);
    margin: 15px; /* Adjust the margin as needed */
}

.action-tile {
    width: 10vh;
    height: 10vh;
    min-width: 10px; /* Set a minimum width for each tile */
    min-height: 40px; /* Set a minimum height for each tile */
/*    background-color: #555; */ /* Background color of the tile */
    margin: 5px; /* Add spacing between tiles */
    display: flex; /* Enable flexbox layout */
    align-items: center; /* Vertically center items within the tile */
    justify-content: center; /* Horizontally center items within the tile */
    box-shadow: 1px 1px 1px rgba(120, 120, 120, 0.8);
    position: relative;
}

.action-tile.disabled {
    opacity: 0.6; /* Reduce opacity to make them appear slightly faded */
    cursor: not-allowed; /* Change cursor to indicate it's not clickable */
    /* Add any other styles you want for disabled action cards here */
}

.action-text {
    color: #000; /* Text color */
    font-family: 'Roboto-Regular', sans-serif;
    font-size: 2vh; /* Font size of the letter */
    font-weight: normal; /* Font weight of the letter */
    text-align: center;
    margin: 3px; /* Add spacing between tiles */
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.2); /* Add a shadow to the images */
}



/* CSS for styling the submit button */
button[type="submit"] {
    color: #fff; /* Text color */
    font-family: 'Roboto-Light', sans-serif;
    font-weight: normal;
    font-size: 2vh; /* Font size of the letter */
    background: #665;
    padding: 5px 5px; /* Add padding to increase button size */
    margin-left: 10px; /* Add margin to space it to the right */
    margin-bottom: 5px; /* Add margin to space it to the bottom */
    margin-top: 5px; /* Add margin to space it to the top */
}

.main-robot-button-container {
    display: flex;
    justify-content: flex-end;
}

    .main-button {
        background-color: #3498db;
        color: white;
        padding: 3px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
            display: none; /* Initially hide the button */

    }

        /* Apply hover effect */
    .main-button:hover {
        background-color: #2980b9;
        transform: scale(1.05);
    }

    .robot-button {
    background-color: #3498db;
    color: white;
    padding: 5px 10px;
    border: solid;
    border-radius: 2px;
    cursor: pointer;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;

}


/* Apply hover effect */
.robot-button:hover {
    background-color: #2980b9;
    transform: scale(1.05);
}

.robot-image {
    height: 2.5vh;
    display: none;
}


.card-points {
    /* Add styles for the score element */
    position: absolute; /* Position it absolutely within the action-tile */
    bottom: 2px; /* Adjust the distance from the bottom as needed */
    right: 2px; /* Adjust the distance from the right as needed */
    background-color: rgba(0, 0, 0, 1); /* Background color for the score */
    color: #ffffed; /* Text color for the score */
    padding: 2px; /* Add padding to the score element */
    font-size: 1.2vh; /* Adjust the font size as needed */
    font-weight: bold; /* Adjust the font weight as needed */
    border-radius: 15px; /* Add border-radius for rounded corners */
}

.action-tiles.disabled {
    pointer-events: none;
    /* Add any other styles as needed */
}

/* Define a CSS class for disabling pointer events on new-action-tiles */
.newactiontiles-disabled {
    pointer-events: none;
}


/* KEYBOARD SECTION */
/* This is the section where the Keyboard is displayed */
.keyboard {
    color: #fff;
    padding: 3px;
}

.keyboard-row {
    display: flex;
    justify-content: center;
    margin-bottom: 3px; /* Add spacing between rows */
}

.letter-button {
    width: 5vh;
    height: 4vh;
    margin: 5px;
    font-family: 'Roboto-Light', sans-serif;
    font-weight: normal;
    font-size: 3vh;
    background-color: #555;
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 2px 2px 3px rgba(255, 215, 0, 0.8); /* Add a shadow to the images */
}

/* Disable the buttons when enable_keyboard is False */
.keyboard.disabled .letter-button {
    cursor: not-allowed; /* Change cursor to indicate it's not clickable */
    opacity: 0.3; /* Adjust the opacity value as needed */
    pointer-events: none; /* Disable click events */
}

/* Style for the message when the keyboard is disabled */
.keyboard.disabled p {
    text-align: center;
    font-weight: bold;
    font-size: 2.5vh;
    color: #f00; /* Red text color */
}

.non-vowel-button {
    opacity: 0.3;
    cursor: default;
    /* Add other styles as needed */
}




/* HISTORY SECTION  */
/* This is the section where the history log is displayed */
.history {
    /* Content Section (20%) */
    flex: 14vh;
/*    background-color: #333; */
    color: #fff; /* Text color */
    font-family: 'Roboto-Thin', sans-serif;
    font-size: 1.9vh; /* Font size of the letter */
    text-align: left;
    margin: 1px; /* Add spacing between tiles */
    padding: 2px;
    width: 100%;
    border-bottom: 1px solid #666; /* Add a 1px solid border at the bottom */
}

.scale-down {
    /* Set the scale transform to 0.25 for 1/4th size */
    transform: scale(0.9);
    transform-origin: top center; /* Ensure scaling starts from the top-left corner */
    margin-top: 5px;
}

.history-name {
    color: white;
    text-align: center; /* Center the text horizontally */
    margin-top: 0px; /* Add spacing between the tile and text */
    font-size: 2vh;
    font-weight: bold;
    margin-left:3vw;
}

/* Add this CSS for the text below each tile */
.tile-text {
    color: white;
    text-align: center; /* Center the text horizontally */
    margin-top: 5px; /* Add spacing between the tile and text */
    font-size: 2.1vh;
    margin-left:11vw;
}

.history-hint-buttons-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 1px;

}

/* Some of these get overwritten by the js code  */
.words-char-possible {
    font-family: 'Roboto-Thin', sans-serif;
    font-size: 1.5vh; /* Font size of the letter */
    font-weight: bold;
    color: #00FF00;
    margin-top: 10px;
    margin-left: 0px;
}

.toggle-button-container {
    display: flex;
    justify-content: center;
}

.toggle-button {
    background-color: #3498db;
    color: white;
    padding: 0px 15px;
    border: none;
    width: auto;
    height: 18px;
    border-radius: 2px;
    cursor: pointer;
    text-align: center;
    font-family: 'Roboto-Light', sans-serif;
    font-weight: normal;
    font-size: 1.6vh;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
    margin-left: 10px;
    margin-right: 10px;
}

.content-container {
  width: 100%; /* Adjust container width as needed */
  height: 15vh; /* Adjust container height as needed */

}

.history-content {
  width: 100%; /* Ensure the content fills the container width */
  height: auto; /* Let the content determine the container's height */
  position: absolute; /* Position the content absolutely within the container */
  top: 0; /* Initially position at the top */
  left: 0; /* Initially position at the left */
}

.arrow-down-up {
    max-width: 100%;
    max-height: 4vh;
    margin-top: 6vh;
    margin-left: 0.5vw;
}

.action-tile-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align items to the left within the flex container */
  margin-left: 0vw; /* Adjust the left margin as needed */
  margin-right: 0vw; /* Adjust the right margin as needed */
}

.tile-and-image-container {
  align-items: center;
  display: flex;
  flex-direction: row;
}

.action-content {
  display: flex;
  align-items: center; /* Align items vertically within the flex container */
}

.choose-text {
    color: #fff; /* Text color */
    font-family: 'Roboto-Light', sans-serif;
    font-size: 2.5vh; /* Font size of the letter */
    font-weight: light; /* Font weight of the letter */
    text-align: left;
    margin: 1px; /* Add spacing between tiles */
}

.hint {
    color: #ff0; /* Text color */
    font-family: 'Roboto-Light', sans-serif;
    font-size: 2vh; /* Font size of the letter */
    font-weight: light; /* Font weight of the letter */
    text-align: center;
    margin: 1px; /* Add spacing between tiles */
}

.hint-text {
    color: white;
    text-align: center; /* Center the text horizontally */
    margin-top: 5px; /* Add spacing between the tile and text */
    font-size: 1.75vh;
    word-wrap: break-word;

}

        .progress-bar {
            width: 30vw;
            height: 10px;
            background-color: #eee;
            position: relative;
        }

        .progress {
            height: 100%;
            background-color: #4CAF50; /* Green */
        }

        .label {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #fff;
            font-weight: normal;
        }

/* Add this style to your styles.css */

/* Rest of your existing CSS */


/* PLAYER SECTION */
/* Individual proportions for sections */
/* CSS for centering and scaling the player image */

.player-icon-container {
    flex: 1; /* Expand to fill available space */
    display: flex;
    flex-direction: column;
    justify-content: bottom;
    height: 8vh; /* Set your desired fraction of viewport height */
}

.player-scores {
    color: #fff; /* Text color */
    font-family: 'Roboto-Light', sans-serif;
    font-size: 1.5vh; /* Font size of the letter */
    font-weight: normal; /* Font weight of the letter */
    text-align: left;
    margin: 0px; /* Add spacing between tiles */
    margin-bottom: 0px;
    margin-top: 5px;
}

.player-icon {
    display: flex;
    flex: 5vh;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px;
    border-bottom: 1px solid #666; /* Add a 1px solid border at the bottom */
    color: #fff; /* Text color */
    font-family: 'Roboto-Light', sans-serif; /* Correct font-family name with quotes */
    font-weight: normal; /* Font weight of the letter */
}

/* Add these styles to your styles.css */

.circle-container {
    display: flex;
    justify-content: space-between; /* Adjust as needed */
    align-items: center;
    margin-top: 3px; /* Adjust as needed */
}

.circle {
    width: 8vh;
    height: 4vh;
    background-color: #4f825f; /* Replace with your desired circle color */
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 10px; /* Increase spacing between circles */
    box-shadow: 1px 1px 2px rgba(255, 255, 0, 0.6); /* White shadow with a slight blur */
}

.name {
    font-size: 1rem;
    font-weight: bold;
    color: white; /* Replace with your desired text color */
    margin-top: 0px;
    margin-bottom: 0px;
}

/* Score Section (25%) */
.score {
    flex: 30%;
/*    background-color: #333; */ /* Adjust background color as needed */
    color: #ff0; /* Text color */
    font-family: 'Roboto-Light', sans-serif;
    font-size: 0.8rem; /* Font size of the letter */
    font-weight: normal; /* Font weight of the letter */
    text-align: left;
    margin: 0px; /* Add spacing between tiles */
}

/* CSS for the current player */
.current-player {
    width: 18vw; /* Adjust the size as needed */
    height: 4.9vh; /* Adjust the size as needed */
    border-radius: 10px;
    background-color: #119911;
    border: 1px solid;
}

/* CSS for other players */
.other-players {
    width: 16vw; /* Adjust the size as needed */
    height: 4.6vh; /* Adjust the size as needed */
    border-radius: 10px;
    background-color: grey;
    opacity: 0.8;
}


/* FOOTER SECTION  */
    footer {
        /* Footer Section (5%) */
                display: flex;
                flex: 40vh;
        color: #fff;
        padding: 5px;
            position: fixed;
    bottom: 0;
        text-align: center;
            width: 100%;
    }

    .footer {
        /* Use flex layout for alignment */
        display: flex;
                flex: 40vh;
        flex-direction: column;
        align-items: center;
    }


    .logout-button {
        background-color: #3498db;
        color: white;
        padding: 2px 8px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        margin-right: 0px;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
    }


    /* Apply hover effect */
    .logout-button:hover {
        background-color: #2980b9;
        transform: scale(1.05);
    }


    .left-footer-content {
        flex: 1; /* Allow left content to expand */
        display: flex;
        align-items: left; /* Vertically center items within the left content */
    }

    .center-copyright {
        /* Center-align the copyright text */
        flex: 1; /* Allow the copyright text to expand and center */
            align-items: center; /* Vertically center items within the left content */
    }

    .right-footer-content {
        display: flex;
        align-items: right; /* Vertically center items within the left content */
        margin-left: 15px;
    }

    .rock-bottom {
    display: flex;
    flex-direction: row;

    }

/* Use media queries to adjust font size for different screen sizes */
@media (max-width: 768px) {
    /* Font size for smaller screens */
    body {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    /* Font size for even smaller screens */
    body {
        font-size: 10px;
    }
}