p,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code {
    font-family: 'Fira Code';
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-align: center;
}

a {
    text-decoration: none;
}

.up {
    display: inline-block;
    text-decoration: none;
    font-family: sans-serif;
    transition: transform 0.3s ease-out;
}

.up:hover {
    transform: translateY(-3px);
}

.greyed {
    background-color: #00000000;
    transition: all 0.3s;
    cursor: pointer;
}

.hover-white :hover {
    background-color: white;
}

.greyed:hover {
    background-color: #00000005;
}

.disgreyed {
    background-color: #00000011;
}

.card {
    border-radius: 15px;
    border: 3px solid #00000011;
    box-shadow: 2px 2px 2px #00000011;
    margin: 5px;
    padding: 15px;
}

*::-webkit-scrollbar {
    display: none;
}

.button {
    border-radius: 15px;
    background-color: #00000011;
    border: 3px solid #00000011;
    padding: 15px;
    padding-left: 30px;
    padding-right: 30px;
    margin: 15px;
}

*::selection {
    background-color: rgba(101, 168, 230, 0.243);
}

.centered {
    display: flex;
    align-items: center;
    justify-content: center;
}

blockquote {
    background-color: #00000011;
    padding: 15px;
}

p,
b,
div {
    color: black;
}

a {
    color: lightblue;
}

a:hover {
    color: lightsteelblue;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    border: 2px solid #00000011;
    padding: 8px;
    padding-top: 12px;
    border-radius: 5px;
}

@keyframes rot {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(180deg);
    }
}

#settings-gear :hover {
    /* transform:translateY(5px); */
    animation: rot 0.5s ease-in-out;
}

pre,
code {
    tab-size: 4;
}


table {
    border-collapse: collapse;
    width: 80%;
    margin: 20px auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    /* border-radius: 15px; */
}

thead tr {
    background-color: #009879;
    /* border-radius: 15px; */
    color: #ffffff;
}

th,
tr,
td {

    font-size: 12px;
}

th,
td {
    padding: 7px 12px;
}

th {
    text-align: left;
}

tbody tr {
    border-bottom: 1px solid #dddddd;
    font-size: 16px;
}

tbody tr:hover {
    background-color: #f1f1f1;
    color: #009879;
}

.green-a {
    margin: 0px;
    color: #009879;
}

th>p {
    margin: 0px;
    color: #009879;
}

.blue {
    color: rgba(61, 153, 240, 0.743);
}

.blue>* {
    color: rgba(61, 153, 240, 0.743);
}

.blue>*>* {
    color: rgba(61, 153, 240, 0.743);
}

.red>* {
    color: #d65252;
}

.red>*>* {
    color: #d65252;
}

.red {
    color: #d65252;
}

input {
    font-family: "Fira Code";
}

.modern-input {
    padding: 4px 5px;
    box-sizing: border-box;
    border: none;
    border: 2px solid #ccc;
    background-color: #00000005;
    font-size: 12px;
    transition: 0.3s;
}

.modern-input:focus {
    border-bottom: 2px solid #4a90e2;
    outline: none;
}

.modern-textarea {
    padding: 15px;
    margin: 15px;
    border: 3px outset #00000015;
    transition: 0.3s;
}

.modern-textarea:focus {
    border-bottom: 2px solid #4a90e2;
    outline: none;
}

.modern-button {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    font-family:'Fira Code';
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.modern-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #5d7df4, #9a6adc);
}