/* @import "tailwindcss";

@theme {
    --font-sans: "Roboto", "sans-serif";
} */

@font-face {
    font-family: "Kepolu";
    src: url("../fonts/Kepolu.ttf");
}

@font-face {
    font-family: "Onest";
    src: url("../fonts/Onest-Regular.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Onest";
    src: url("../fonts/Onest-Medium.ttf");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Onest";
    src: url("../fonts/Onest-SemiBold.ttf");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Onest";
    src: url("../fonts/Onest-Bold.ttf");
    font-weight: 700;
    font-style: normal;
}

:root {
    --score-purple: #5569F9;
    --brand-dark-plum: #54366D;
    --brand-dark-plum-contrast: rgba(187, 113, 250, 0.14);
    --brand-old-primary: #312E42;
    --brand-primary: #4B8EC1;
    --brand-secondary: #52535B;
    --brand-yellow: #FDF4DE;
    --brand-white: #F7F7FA;
    --gradient-pink-purple: linear-gradient(273deg, #f533ff 0%, #3238df 91%);
    --color-border-border-default: #808184;
    --color-border-border-disabled: #ECECED;
    --color-brand-primary: #186AE7;
    --color-overlay-dark-light: rgba(0, 0, 0, 0.1);
    --color-text-icons-subtle: #68696D;
    --color-text-icons-strong: #1C1C1E;
    --color-surface-primary: #FCFDFD;
}

body {
    font-family: "Roboto", sans-serif;
    height: 100%;
    /* margin: 0;
    padding: 20px; */
}

/* navbar */
.navbar {
    background-color: var(--brand-dark-plum);
}

.body-text {
    color: var(--brand-dark-plum);
}

.agreement-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.agreement-checkbox input {
    margin-right: 10px;
}

.play-now-btn {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    padding: 12px 30px;
    background-color: #337ab7;
    font-size: 1.2em;
}

.play-now-btn:hover {
    background-color: #286090;
}

.play-now-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.terms-link {
    color: #337ab7;
    text-decoration: underline;
    font-weight: 500;
}

.terms-link:hover {
    color: #23527c;
}

footer {
    text-align: center;
    margin-top: 40px;
    color: #777;
}

.app-container {
    display: flex;
    gap: 20px;
}

.sidebar {
    width: 250px;
    flex-shrink: 0;
}

.main-content {
    flex-grow: 1;
}

.timer {
    font-weight: bold;
    color: #d9534f;
}

.disabled {
    background-color: #f0f0f0;
    cursor: not-allowed;
}

.submitted {
    background-color: #dff0d8;
    border-color: #d6e9c6;
}
