/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

    /* Command-line style adjustments */
body {
    background-color: #f5f5f5; /* Light-gray background */
    color: #333; /* Dark text color */
    font-family: "Courier New", Courier, monospace; /* Monospace font for command-line feel */
}
.command {
    color: #000; /* Black text for command prompts */
    display: inline-block;
}
.cursor {
    display: inline-block;
    width: 10px;
    height: 1em;
    background-color: #333;
    margin-left: 5px;
    animation: blink 1s steps(2, start) 5;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
.link:hover {
    color: #1e90ff;
    cursor: pointer;
}
/* Shutdown overlay styling */
#shutdownOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-out, visibility 1s;
    z-index: 9999;
}
#shutdownOverlay.show {
    opacity: 1;
    visibility: visible;
}

body {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .text-left {
    position: relative;
    z-index: 10;
    padding: 20px;
    /* background-color: rgba(0, 0, 0, 0.5);  */
    border-radius: 8px;
  }

  .page-background {
    background-size: cover;
    background-position: center;
    height: 100vh; /* Adjust height if needed */
  }

  .no-link-style {
    text-decoration: none; /* Removes underline */
    color: inherit;       /* Inherits the color from the parent element */
  }