html, body { background-color: var(--color-bg); font-family: var(--primary-font); color: var(--color-text); }

hr {
    border: none;
    height: 2px; /* Adjust as needed */
    background-color: #888; /* Choose your color */
    width: 95%;
    margin: 40px;
    
    box-shadow: 0px 8px 13px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 8px 13px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 8px 13px 0px rgba(0,0,0,0.75);

}


/* LOGIN */
.login-page-container {
    height: 100vh;
    width: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--login-page-bg);
}

.login-box {
    background-color: #eee;
    padding: 10px;
    width: 500px;
    min-height: 350px;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    box-shadow: 0px 0px 60px 10px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 0px 60px 10px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 60px 10px rgba(0,0,0,0.75);
}

.login-id {
    margin: 20px;
    font-size: 60px;
    font-weight:bolder;
}

.login-box label { display: block; margin-bottom: 5px; font-weight: bold; } 
.login-box input[type="text"], input[type="password"] { width: 100%; padding: 10px;
     margin-bottom: 15px; border: 1px solid #ccc; border-radius: 4px; 
     box-sizing: border-box; }
     
.login-box button { width: 100%; padding: 10px; background-color: #4CAF50; color: white; margin-top: 50px;
    border: 1px solid #327235; border-radius: 4px; cursor: pointer; font-size: 16px; } 
.login-box button:hover { background-color: #45a049; }

#login-error { display: none; color: red; }

/* ROSTER */

/* top-menu */
.menu-holder {
    /*height:30px;*/
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin: 40px;
    /*background-color: blue; */
    background: linear-gradient(90deg, rgba(63, 93, 138, 1) 0%, rgba(26, 57, 105, 1) 100%);
    
    box-shadow: 0px 8px 13px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 8px 13px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 8px 13px 0px rgba(0,0,0,0.75);

}

.menu-button { 
    text-decoration: none;
    color: #DDD;
    font-weight: bolder;
    /*background-color: red; */
    
    /*height: 40px; */
    padding: 20px; 
}

.menu-button:hover {
    background: linear-gradient(90deg, rgba(26, 57, 105, 1) 0%, rgba(63, 93, 138, 1) 100%);
}

/* CARDS */

.card-container {
    /*background-color: green;*/
    padding: 20px;
    margin: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.card-container a { 
    text-decoration: none;
}

.card {
    /* Outer Card */
    background-color: #eee;
    width: 250px;
    height: 350px;
    border: 5px solid #222;
    border-radius: 10px;

    box-shadow: 0px 8px 13px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 8px 13px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 8px 13px 0px rgba(0,0,0,0.75);


    /* Inner Card */
    color: black;
    display: flex;
    flex-direction: column;
    /*justify-content: center;*/
    
    align-items: center;
}

.card-title {
    font-size:26px;
    font-weight:bold;
    color: white;
    margin-top:10px;
    position: absolute;

    text-shadow: 1px 4px 3px #000;


}

.card-image {
    width: 100%;
    height: 250px;
    background-color: #222;
}

.card-info {
    width: 100%;
    height: 100%;
    background-color: rgba(63, 93, 138, 1);
    border: 2px solid #064b79;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    /*justify-content: center;*/
    
    align-items: center;
}

.card-info p {
    margin-top: 10px;
    font-weight: bold;
    color: #111;
    text-align: center;
}