:root {
    --bg-color: #f9f9f9;
    --modal-bg: #ffffff;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --accent: #0F5439;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
    background-color: var(--bg-color);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Centering Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* The Modal Card */
.modal {
    background: var(--modal-bg);
    padding: 40px;
    max-width: 450px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #eaeaea;
}

h2 {
    color: var(--text-main);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.2;
    margin-bottom: 18px;
}

.modal-box-elements {
    margin-top:12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-box-element-section{
    display: flex;
    gap:8px;
    justify-content: center;
}

.modal-box-element {
    padding:10px;
    background: #f0f0f0;
    color: var(--text-muted);
    border:0.5px solid #a5a5a54d;
    border-radius:4px;
    text-align: left;
    flex:0 0 48%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modal-box-element p{
    font-size:12px;
    margin:0;
}

.modal-box-element h4{
    margin-top:6px;
    font-size:21px;
    color:var(--text-main);
}


.progress-container {
    width: 100%;
    background-color: #eee;
    border-radius: 3px;
    margin: 10px 0;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    width: 0%;
    height: 20px;
    background-color: var(--accent);
    border-radius: 3px;
    /* The 60s magic happens here */
    animation: loadProgress 60s linear forwards;
}

.timer-text {
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.highlight{
    color:var(--accent);
}

.slot-div{
    margin:15px 0;
}

.slot-div p{
    margin:0;
    font-weight:600;
}

.slot-div h4{
    font-size: 21px;
}


/* Animation Keyframes */
@keyframes loadProgress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}