/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Nosifer&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@100&display=swap');

/* Evil Style */
.evil-style {
    font-family: 'Nosifer', cursive;
    color: red;
    background-color: black;
    padding: 20px;
    text-align: center;
    text-shadow: 2px 2px 4px #000000;
    border: 2px solid darkred;
    border-radius: 10px;
}

/* Slave Style */
.slave-style {
    font-family: 'Roboto Mono', monospace;
    color: red;
    background-color: #333;
    padding: 20px;
    text-align: center;
    text-shadow: 1px 1px 2px #000000;
    border: 2px solid darkgray;
    border-radius: 5px;
    letter-spacing: 2px;
}

/* Table Style 1 */
table.style1 {
    width: auto;
    border-collapse: separate;
}

    table.style1 th,
    table.style1 td {
        border: 1px solid black;
        padding: 8px;
        text-align: left;
    }

    table.style1 th {
        background-color: #f2f2f2;
    }

/* Table Style 2 */
table.style2 {
    width: auto;
    border-collapse: collapse;
}

    table.style2 th,
    table.style2 td {
        border: 1px solid black;
        padding: 8px;
        text-align: left;
    }

    table.style2 th {
        background-color: #f2f2f2;
    }

/* Table Style 3 */
table.style3 {
    width: auto;
    border-collapse: collapse;
}

    table.style3 th,
    table.style3 td {
        padding: 1px;
        border: none;
        text-align: start;
    }

    table.style3 th {
        background-color: #f2f2f2;
    }

/* Table Style 4 */
table.style4 {
    width: 100%;
    border-collapse: separate;
    background-color: #333;
    margin: 0;
    padding: 0;
}

    table.style4 th,
    table.style4 td {
        border: 1px solid black;
        height: 40px;
        text-align: center;
        background-color: #333;
    }

    table.style4 a,
    table.style4 a:visited,
    table.style4 a:hover,
    table.style4 a:active {
        color: red;
    }


.large-text {
    font-size: 1.5em;
    font-weight: bold;
}
.bold-text {
    font-size: 1em;
    font-weight: bold;
}
.paragraph {
    border-top: 1px solid black;
    padding: 10px 0;
}
p.darkgray-background {
    background-color: #333;
    color: white; /* Optional: to make the text more readable */
    margin: 0;
    padding: 0;
}
h1{
    margin: 0;
    padding: 0;
}

/* button */
.button {
    background-color: #333;
    color: red;
    font-size: 16px;
    border: none;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

/* Change the background color of the  button */
.button:hover {
    background-color: #4d4b4b;
}

/* Dropdown button */
.dropbtn {
    background-color: #333;
    color: red;
    font-size: 16px;
    border: none;
    cursor: pointer;
    width: 100%;
    height: 100%;
}


/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    vertical-align: central;
}


/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    width: 100%;
    right: 0;
}

    /* Links inside the dropdown */
    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

        /* Change color of dropdown links on hover */
        .dropdown-content a:hover {
            background-color: #4d4b4b;
        }

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: #4d4b4b;
}