@import url('https://fonts.googleapis.com/css2?family=Arima+Madurai:wght@100&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#s-m-t-tooltip {
    padding: 5px;
    display: none;
    text-align: center;
    position: absolute;
    font-style: normal;
    margin-top: 4px;
    margin-left: 13px;
    line-height: 9px;
    z-index: 999999999999999999999999999;
    background: #2c2a2d;
    color: #b5afa5;
    letter-spacing: 2px;
    font-family: 'Nunito', sans-serif;
    font-size: 11px;
    font-weight: 400;
    text-transform: lowercase;
    border-radius: 5px;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.2);
    border-left: 4px solid #3d7274;
    width: 200px;

}

.ph {
    width: 1.25em;
    display: inline-block;
    text-align: center;
    font-size: 10pt;
    vertical-align: middle;
    color: inherit;
}


body {
    font-family: "Nunito Sans", sans-serif;
    font-size: 13px;
    color: #b5afa5;
    background-image: url('../img/bg.png');
    background-repeat: repeat;
    background-attachment: fixed;
}

input,
textarea,
select {
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    color: #fff;
    border-radius: 5px;
}

.actions {
    display: flex;
    gap: 5px;
    justify-content: flex-end;
    align-items: center;
}

.actions a {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 8pt;
    font-weight: bold;
    text-transform: uppercase;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

th {
    background-color: rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

th:first-child {
    border-top-left-radius: 10px;
}

th:last-child {
    border-top-right-radius: 10px;
}

tr:nth-child(odd) {
    background-color: rgba(0, 0, 0, 0.2);
}

tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.1);
}

tr:hover {
    background-color: rgba(0, 0, 0, 0.35);
    transition: background-color 0.2s;
}

.form {
    width: 90%;
    margin: 0 auto;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
    border-radius: 10px;
}

.form button.large {
    width: 50%;
    min-width: 200px;
    margin: 0 auto;
    display: block;
}

fieldset.settings-group {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 5px;
}

fieldset.settings-group legend {
    font-weight: bold;
    padding: 0 10px;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    padding: 10px 15px;
    margin-bottom: 8px;
    border-radius: 5px;
    color: #fff;
    transition: background-color 0.2s, transform 0.1s;
}

li:before {
    content: "\E13A";
    font-family: "Phosphor";
    font-size: 10pt;
    vertical-align: middle;
    margin-right: 5px;
}

li:hover {
    background-color: rgba(0, 0, 0, 0.35);
    transform: translateX(3px);
}

li:nth-child(odd) {
    background-color: rgba(0, 0, 0, 0.25);
}

li:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.15);
}

button {
    padding: 8px 16px;
    border: 1px solid #8b3838;
    background-color: #7a2525;
    color: #fff;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    border-radius: 5px;
    transition: background-color 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease;
}

button:hover {
    filter: brightness(1.1);
}

button:active {
    transform: translateY(2px);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.messages {
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    color: #fff;
}

.messages.success {
    background: #3e7454;
}

.messages.error {
    background: #a84c4c;
}

a {
    text-decoration: none;
    color: #669883;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
}

a:hover {
    color: #636363;
}

b,
strong {
    color: #c72539;
    text-transform: uppercase;
}

i,
em {
    color: orangered;
    font-family: 'Bookman', serif;
}


img {
    max-width: 100%;
}

h1 {
    font-size: 12pt;
    line-height: 24px;
    padding: 10px;
    background-color: #030303;
    border-radius: 12px;
    margin-bottom: 10px;
}

h1:not(:first-child) {
    margin-top: 25px;
}

h3 {
    font-size: 12pt;
    padding: 10px;
}

.box {
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
}

.main blockquote {
    border-left: 1px solid orangered;
    padding: 10px;
    font-size: 12px;
}

#container {
   
    padding: 10px;
    width: 650px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;

}

#sidebar {
    position: fixed;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 350px;
    background: #dddddd;
    background-image: url('../img/side.png');
    background-attachment: fixed;
    background-size: contain;
    background-position: center;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}

#description {
    font-size: 10px;
    color: #000000;
    text-align: justify;
    padding: 10px;
}

#sideimage img {
    margin-left: 10px;
}

#sidetitle {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 2px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
    margin-top: 550px;
    font-family: 'Arima Madurai', cursive;
    text-transform: uppercase;
    color: orangered;
    font-size: 20px;
    text-align: center;
    letter-spacing: 2px;
    width: 250px;
    border-left: 3px solid orangered;
    border-right: 3px solid orangered;
    border-radius: 20px;
}

#smalltitle {
    font-family: 'Arima Madurai', cursive;
    text-transform: uppercase;
    color: orangered;
    font-size: 14px;
    text-align: center;
    letter-spacing: 2px;
}

#links {
    font-size: 14px;
    padding: 8px;
    background-color: rgba(33, 33, 33, 0.8);
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
    padding: 10px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;

}

#links a {
    display: inline-block;
    color: #878787;
    font-family: 'Arima Madurai', cursive;
    padding: 5px;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;

    text-transform: uppercase;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px;

}

#links a:hover {
    color: #dddddd;

}


::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #2c2a2d;
}

::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: #39454a;
}

::-webkit-scrollbar-thumb:hover {
    background: #669883;
}

/* The navigation bar */
.navbar {
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    /* Set the navbar to fixed position */
    top: 0;
    /* Position the navbar at the top of the page */
    width: 100%;
    /* Full width */
    left: 350px;
    font-family: 'Arima Madurai', cursive;
    border-bottom: 5px solid orangered;
    z-index: 1000;
    backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
}

/* Links inside the navbar */
.navbar a {
    
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
}

/* Change background on mouse-over */
.navbar a:hover {
    background: orangered;
    color: black;
}

/* Main content */
.main {
    margin-top: 50px;
    position: absolute;
    left: 470px;
    margin-left: auto;
    margin-right: auto;
    width: 655px;
}

hr {
    border: none;
    box-shadow: 0;
    margin: 1.5px 25%;
    border-top: 1px solid orangered;
}

img {
    opacity: .5;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
}

img:hover {
    opacity: 1;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;

}

.footer {
    font-size: 10.5px;
    text-transform: uppercase;
    margin-bottom: 5px;
}