:root {
    --color-black: #232323;
    --color-pink: #ff6393;
    --color-dark-pink: #df4775;
    --color-purple: #342a47;
    --color-blue: deepskyblue;
    --color-gray: #525252;
    --color-green: #bbe187;
    
    --primary-color: #24458C;
    --secondary-color: #E1C40E;
    --light-primary-color-1: #818da9;
    --light-primary-color-2: #4f6eaf;
    --light-secondary-color: #fff3a6;

    --transition-fast: 0.1s;
}


   
body {
    background: url(https://apps.pnu.edu.ph/appointment/images/PNU.png) no-repeat;
    background-size: cover;
    background-repeat: repeat;
    display: grid;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container {
    /*width: 1000px;*/
}

.header-container {
    text-align: center;
    margin: 0 auto;
}

.header-container h1{
    margin-bottom: 30px;
}

.red {
    color: red;
    font-weight: bold;
    font-size: 18px;
}

.red.no-weight {
    font-weight: normal;
    font-size: 16px;
    margin-left: 10px;
}

.card{
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .2);	
    border-radius: 5px;
    /* background-color: rgba(255, 255, 255, .15); */
    background-color: rgba(255, 255, 255);
    
    /* backdrop-filter: blur(20px); */
    /* width: 500px; */
    /* margin: 20px; */
}

.container-admin{
    /* height: 220px; */
    padding: 20px;
}

.input-external, .btn {
    width: 300px;
    margin: auto;
}

.input-external:last-of-type {
    margin-top: 10px;
    margin-bottom: 20px;
}

.all-caps {
    text-transform: uppercase;
}

.separator {
    border-bottom: 1px solid black;
}

form {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.tb-space {
    margin: 6px 0;
}

.btn-custom {
    letter-spacing: 2px;
    font-size: 18px;
}

.div-calendar {
    padding: 20px;
    background-color: rgba(235, 235, 235, .25);
    border-radius: 10px;
}

.bg-closed {
    background-color: rgba(200, 200, 200, .5);;
}

.bg-available {
    background-color: rgb(82, 165, 255);
    color: white;
}

.bg-full {
    background-color: rgb(227, 89, 102);
    color: white;
}

.app-guide {
     padding: 0px 2px;
     margin: 2px;
     border-radius: 5px;
     display: inline-block;
     width: 70px;
     text-align: center;
     font-size: 12px;
}

.hover-available:hover{
    background-color: #007bff;
}

.calendar-title {
    text-align: center;
    font-size: 20px;
}

th {
    text-align: center;
    width: 50px;
}

td {
    cursor: pointer;
    text-align: center;
}

/*@media (max-width: 500px) {
    .container {
        margin: auto;
        transform: scale(.75);
    }
}

@media (max-width: 375px) {
    .container {
        margin: auto;
        transform: scale(.5);
    }
}*/