﻿

.container {
    width: 1400px;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.card {
    background-color: #b7c2d3;
    /*#ffffff;*/
    width: 60%;
    max-width: 1400px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: 0.3s;
}

    .card:hover {
        transform: translateY(-5px);
    }

.card-header {
    background-color: #D3D3D3;
    color: black;
    padding: 15px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.card-body {
    padding: 20px;
    color: #333;
}

.card-footer {
    padding: 15px;
    text-align: center;
    background-color: #f1f1f1;
}

.btn {
    background-color: gray;
    color: white;
    padding: 8px 15px;
    border: 1px solid thin;
    border-radius: 5px;
    cursor: pointer;
    width: 300px;
    height: 40px;
}

.lbl {
    /*background-color: #007bff;*/
    color: red;
    font-family: Arial, sans-serif;
}


.btn:hover {
    background-color: lightgray;
}

.header-style {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-title {
    font-weight: bold;
    font-size: 18px;
}

.header-logout {
    position: absolute;
    right: 15px;
}

.lottery-container {
    width: 900px;
    margin: auto;
    font-family: Arial;
    border: 2px solid #333;
}

.header {
    display: flex;
    justify-content: space-between;
    background: #1ca44c;
    color: #fff;
    padding: 10px;
}

.prize-box {
    background: #ffeb3b;
    color: #000;
    text-align: center;
    padding: 10px;
    width: 200px;
}

    .prize-box .big {
        font-size: 60px;
        font-weight: bold;
    }

.amount {
    font-size: 22px;
    font-weight: bold;
}

.title {
    text-align: center;
}

    .title h1 {
        font-size: 40px;
        margin: 0;
    }

.time {
    background: yallow;
    padding: 10px;
    font-size: 28px;
    font-weight: bold;
}

.section {
    padding: 12px 15px;
    background: linear-gradient(90deg,#ffd700, #ff6b6b, #ffffff);
    /*background-color:darkslategrey;*/
    border-radius: 6px;
    border: 1px solid #e5e5e5;
    margin-bottom: 10px;
}

    .section h3 {
        background: #f2f2f2;
        padding: 5px;
    }


.section1 {
    /*padding: 12px 15px;*/
    background: linear-gradient(90deg,#ffd700, #ff6b6b, #ffffff);
    /*background-color: gray;*/
    border-radius: 6px;
    border: 2px solid #ddd;
}

.numbers {
    font-size: 20px;
    letter-spacing: 2px;
    text-align: right;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

.watermark {
    position: absolute;
    top: 38%;
    left: 55%;
    transform: translate(-50%,-50%);
    font-size: 6vw;
    color: #000;
    opacity: 0.08;
    font-weight: bold;
    z-index: 1;
    white-space: nowrap;
}

.winner {
    text-align: center;
    font-size: 40px;
    color: brown;
    padding: 20px;
    font-weight: bold;
}

.resultGrid {
    font-size: 20px;
    font-weight: bold;
    font-family: "Arial Black";
}

    .resultGrid td {
        text-align: right;
    }



.result-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg,#ffd700, #ff0000, #006400);
    /*background-color: slategrey;*/
    border-radius: 10px;
    padding: 6px;
    gap: 6px;
}

.result-box {
    padding: 10px 15px;
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
}

.date-box {
    background: #2f7d32;
    color: #ffff00;
    font-size: 28px;
}

.time-box {
    background: #ff0000;
    color: #ffff00;
    font-size: 40px;
    padding: 10px 25px;
}

.info-box {
    background: #7aa33b;
    color: #ffff00;
    font-size: 12px;
    width: 220px;
}


@media (max-width:768px) {

    .result-number {
        font-size: 28px;
    }

    .watermark {
        font-size: 10vw;
    }
}
