 /* style.css */

html {
    background: linear-gradient(134deg, #030303, #14181a, #798086);
}

body {
    min-height: 100vh;  /* set minimum height to full viewport height */
    color: #ffffff;
    margin: 0;  /* remove default margin */
}

.container {
    color: white;
    padding-bottom: 60px; /* Adjust based on your footer's height + desired space */
}

    h1 {
        text-align: center;
    }
    .form-container {
        background-color: #33373b;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
    }
    @keyframes gradient-animation {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }
  /* Existing CSS code */

  .my-footer {
    background-color: #343a40;
    color: white;
    padding: 20px 0;
    width: 100%;
    text-align: center;
}


/* Existing CSS code */

.title-style {
    color: #FFFFFF;  /* White */
    text-align: center;
    font-size: 3rem;  /* Size */
    text-shadow: 2px 2px 10px #000000;  /* Shadow */
    padding: 20px;
    margin-top: 20px;
}
/* style.css */

.login-container {
    background-color: rgba(27, 35, 36, 0.986);
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    margin: auto;
    margin-top: 100px;
}

.login-title {
    font-size: 2.5em;
    margin-top: 20px;
    text-align: center;
    color: #ffffff;
}

body {
    background: linear-gradient(134deg, #030303, #14181a, #798086);  /* Dark to light gray */
    color: #ffffff;
}
.market {
    border: 1px solid #444;
    margin: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    max-width: 300px;
    background-color: #333;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);  /* Adjusted shadow */
}
.gray-out {
    opacity: 0.5;
}
.status-online {
    background-color: green;
    color: white;
}

.status-different-market {
    background-color: yellow;
    color: black;
}

.status-overtime {
    background-color: red;
    color: white;
}

.status-offline {
    background-color: grey;
    color: white;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.my-footer {
    margin-top: auto;
}
