@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
    --background: #ffffff;
    --foreground: #171717;
}

/*@media (prefers-color-scheme: dark) {*/
/*  :root {*/
/*    --background: #0a0a0a;*/
/*    --foreground: #ededed;*/
/*  }*/
/*}*/

body {
    color: var(--foreground);
    background: var(--background);
    font-family: Inter, Helvetica, sans-serif;
    background-color: var(--background);
    background-image: url('/static/assets/bggrid.png');
    background-repeat: repeat;
    background-size: 300px 300px;
}


.outlined-container {
    padding: 24px 30px;
    border: 4px SOLID #f1f1f1;
}

.outlined-container--active {
    border: 4px SOLID #555555;
}

.outlined-light-container {
    padding: 24px 30px;
    border: 1px SOLID #f1f1f1;
}

.shaded-container {
    padding: 24px 30px;
    background-color: #F9F9F9;
}

.container-mini {
    padding: 14px 20px;
}


.history {
    position: relative;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
}

.history::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ccc;
}

.entry {
    display: flex;
    align-items: flex-start;
    padding-left: 60px;
    position: relative;
    flex-wrap: wrap;
}

.entry::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 11px;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 3px solid #999999;
    border-radius: 50%;
    z-index: 1;
}

.badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 8px;
    border-radius: 4px;
    margin-right: 6px;
    margin-top: 5px;
    color: #fff;
}

.badge.new {
    background-color: #00b67a;
}

.badge.announcement {
    background-color: #6e46ff;
}

.images img {
    max-width: 100px;
    border-radius: 4px;
    border: 1px solid #ddd;
}