﻿body {
    background-color: #1b274b;
    color: #3A54A5;
    font-family: "Lato", Sans-serif;
    font-size: 18px;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: overlay;
    line-height: 1.4;
}

* {
    box-sizing: border-box;
}

a {
    all: unset;
}

#processingBox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding-top: 20%;
    z-index: 5000;
}

.RoundSpin {
    background-color: #ffffff;
    width: 125px;
    height: 125px;
    border-radius: 60px;
    padding: 10px;
    position: absolute;
    top: 40%;
    left: 50%;
}

.alertBox {
    min-width: 250px;
    max-width: 500px;
    display: none;
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background: #f2f2f2;
    border: 2px solid #034C8C;
    box-shadow: 0 0 8px #034C8C, 0 0 12px #0366D6, 0 0 18px #0BC8F2;
    text-align: center;
    z-index: 1000;
    border-radius: 25px;
    font-family: Arial, sans-serif;
    font-size: 18px;
    animation: glowx 1.2s infinite alternate ease-in-out;
}

.cmdButtonReg {
    padding: 10px;
    border-width: 1px;
    border-color: #34762F;
    background-color: #34762F;
    color: white;
    border-radius: 5px;
    /*  height: 25px;*/
    letter-spacing: 0.225em;
    cursor: pointer;
    min-width: 100px;
    font-size: 14px;
    /*    font-size:large;*/
}

    .cmdButtonReg:hover {
        background-color: #418E3B;
        color: #ffffff;
    }

.cmdButtonAssign {
    border-width: 1px;
    border-color: #034C8C;
    background-color: #034C8C;
    color: white;
    border-radius: 5px;
    /*  height: 25px;*/
    letter-spacing: 0.225em;
    cursor: pointer;
    height: 30px;
    min-width: 125px;
    margin-bottom: 5px;
}

    .cmdButtonAssign:hover {
        background-color: #05C7F2;
        color: #ffffff;
    }

.txtEntry {
    padding: 5px;
    background-color: #BCDCF2;
    color: #000000;
    border-style: solid;
    border-width: 1px;
    border-color: #89899F;
    max-width: 100%;
}

    .txtEntry:focus {
        background-color: #ffffff;
    }



.divAround {
    border-style: solid;
    border-width: thin;
    padding: 15px;
    border-radius: 15px;
    background-color: #ffffff;
}

.divEnclose {
    background-color: #ffffff;
    /* color: #000000;*/
    border-radius: 20px;
    padding: 20px;
    border-width: thin;
    border-color: #d9e1f2;
    border-style: solid;
    height: 100%;
    margin:10px;
}


.floatLogin {
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    z-index: 256;
    max-width: 500px;
    padding: 25px;
    text-align: left;
    /*    border-color: white;*/
    border-style: solid;
    border-width: thin;
    background-color: #ffffff;
    border-radius: 25px;
}



.cmdSlotInActive {
    border-width: 1px;
    border-color: #660000;
    background-color: #660000;
    color: white;
    border-radius: 5px;
    /*  height: 25px;*/
    letter-spacing: 0.225em;
    cursor: pointer;
    height: 30px;
    width: 75px;
    margin-bottom: 5px;
}

    .cmdSlotInActive:hover {
        background-color: #cc0000;
        color: #ffffff;
    }



.cmdSlotActive {
    border-width: 1px;
    border-color: #006600;
    background-color: #006600;
    color: white;
    border-radius: 5px;
    /*  height: 25px;*/
    letter-spacing: 0.225em;
    cursor: pointer;
    height: 30px;
    width: 75px;
    margin-bottom: 5px;
}

    .cmdSlotActive:hover {
        background-color: #00cc00;
        color: #ffffff;
    }

.cmdSlotNormal {
    border-width: 1px;
    border-color: #034C8C;
    background-color: #034C8C;
    color: white;
    border-radius: 5px;
    /*  height: 25px;*/
    letter-spacing: 0.225em;
    cursor: pointer;
    height: 30px;
    width: 75px;
    margin-bottom: 5px;
}

    .cmdSlotNormal:hover {
        background-color: #05C7F2;
        color: #ffffff;
    }

.divEncloseMod {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 20px 20px 20px; /* Enough space for multi-line banners */
    border-width: thin;
    border-color: #d9e1f2;
    border-style: solid;
    height: 100%;
    margin: 10px;
    position: relative;
    overflow: hidden;
}

/* SINGLE-LINE & MULTI-LINE BANNERS */
.banner-single, .banner-multi {
    width: 100%;
    text-align: center;
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    background: linear-gradient(45deg, #3A54A5, #3264B1, #267CC1, #4495C9, #FFCD4E, #87B350, #A3D162);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

/* Single-line banner specific height */
.banner-single {
    height: 90px; /* Fixed height */
    padding: 20px;
}

/* Multi-line banner with more padding */
.banner-multi {
    height: 140px; /* Fixed height for extra space */
    padding: 50px 20px;
}

    /* Glow animation effect */
    .banner-single::before, .banner-multi::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.3) 10%, transparent 80%);
        animation: glow 4s linear infinite;
        opacity: 0.6;
    }

@keyframes glow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* 🔹 Reduce font size on smaller screens */
@media (max-width: 768px) { /* Tablets & small devices */
    .banner-single, .banner-multi {
        font-size: 36px; /* Reduce font size */
        padding: 15px;
    }
}

@media (max-width: 480px) { /* Mobile phones */
    .banner-single, .banner-multi {
        font-size: 28px; /* Smaller text for compact screens */
        padding: 10px;
    }
}