@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
    color: lightgray;
}

body {
    background-color: #252525;
    font-family: Arial, Helvetica, sans-serif;
    color: lightgray;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

:disabled {
    color: gray;
}

#maindiv {
    width: 100%;
    height: 100%;
}

input, button, textarea, select {
    background-color: #202020;
    border-color: #151515;
    border-style: solid;
    border-radius: 3px;
    border-width: 2px;
    padding: 6px;
}


input:disabled, button:disabled, textarea:disabled {
    opacity: 0.5;
}

input:focus, button:focus {
    outline: none;
    background-color: #202020;
    border-color: #858585;
}

input:hover, button:hover, select:hover {
    cursor: pointer;
    outline: none;
    background-color: #222222;
    border-color: #858585;
    transition: 0.2s;
}

input:active, button:active, select:active {
    background-color: #131313;
}

a {
    color: lightgray;
}

button {
    font-size: 18px;
    background-color: #191919;
}

hr  {
    border: none;
    width: 100%;
    padding: 0px;
    margin: 0px;
    height: 2px;
    border-top: 1px solid #333;
}

.btn {
    cursor: pointer;
    border: #171717 solid 3px;
    border-radius: 3px;
    padding: 6px;
    text-decoration: none;
    background: #202020;
    align-content: center;
}

.btn:hover {
    color: white;
    background: #191919;
    transition: linear .1s;
}

select {
    /* height: 30px; */
    text-align: center;
    border-radius: 6px;
    border-style: solid;
    border-radius: 4px;
    border-width: 2px;
    border-color: #151515;
    transition: 0.3s;
}

select::-ms-expand {
    display: none;
}

select:hover {
    background-color: #252525;
    transition: 0.3s;
}

select:focus {
    outline: none;
    background-color: #252525;
    border-color: #858585;
    transition: 0.3s;
}

table .header {
    font-weight: 500;
}

table {
    border-collapse: collapse;
    background-color: #202020;
    border-radius: 6px;
    text-align: center;
}

td {
    padding: 8px;
    border: 1px solid #151515;
}

.border_div {
    border: #151515 solid 3px;
    background-color: #202020;
    border-radius: 4px;
}


.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-content {
    min-width: 30%;
    background-color: #2e2e2e;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.modal button {
    max-width: 400px;
    margin: 10px;
    padding: 10px 20px;
    border: solid black 1px;
    cursor: pointer;
    border-radius: 5px;
}


@media (max-width: 480px) {
    .modal-content {
        min-width: 70%;
    }
}