
body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #ffffff; 
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column; 
    align-items: center;
    min-height: 100vh; 
    padding-top: 60px; 
}

.container {
    background-color: #1e1e1e; 
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    width: 100%;
    max-width: 400px;
    max-height: calc(100vh - 60px);
    overflow: auto;
    overflow-y: auto;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
}


.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group select {
    width: 100%;
    padding: 10px 15px;
    background-color: #262626; 
    color: #dcdcdc; 
    border: 1px solid #333333;
    border-radius: 4px;
    font-size: 16px;
}


.submit-btn {
    width: 100%;
    background-color: #4CAF50; 
    color: #ffffff; 
    border: none;
    padding: 10px 20px;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    border-radius: 4px;
}

.submit-btn:hover {
    background-color: #45a049; 
    transform: scale(1.05); 
}


#formResponse {
    margin-top: 20px;
    text-align: center;
    color: #ff4444; 
}


@media (max-width: 480px) {
    .container {
        padding: 20px;
    }
}

#message {
    color: #ff4444; 
}

#results, #message {
    width: 350px; 
    margin-top: 20px;
    padding: 10px;
    background-color: #1e1e1e; 
    border: 1px solid #333333;
    border-radius: 4px; 
}

button:hover {
    background-color: #555555; 
}

button {
    background-color: #333333; 
    color: #ffffff; 
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 4px; 
}

textarea {
    width: 350px;
    height: 200px;
    background-color: #1e1e1e; 
    color: #dcdcdc; 
    border: none;
    padding: 10px;
    margin-top: 20px;
    border-radius: 4px; 
}

body {
    font-family: Arial, sans-serif;
    background-color: #121212; 
    color: #ffffff; 
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}






#settingsResponse {
    color: #4CAF50; 
    margin-top: 20px;
    text-align: center;
}


.tab {
    overflow: hidden;
    background-color: #333; 
}

.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
    color: #fff; 
}

.tab button:hover {
    background-color: #ddd; 
    color: #333; 
}

.tab button.active {
    background-color: #555; 
    color: #fff;
}

.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
    background-color: #1e1e1e; 
    color: #dcdcdc; 
    min-height: 400px; 
    max-height: 500px; 
    overflow: auto; 
}



.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

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

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #555;
}


.search-form {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    border: 1px solid #333;
    background-color: #262626;
    color: #dcdcdc;
}


.results-container {
    margin-top: 20px;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.table-responsive {
    overflow-x: auto;
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    min-width: 400px;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
}

.styled-table thead tr {
    background-color: #009879;
    color: #ffffff;
    text-align: left;
}

.styled-table th,
.styled-table td {
    padding: 12px 15px;
    color: #ffffff; 
}

.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
    color: #ffffff; 
}

.styled-table tbody tr:nth-of-type(odd) {
    background-color: #262626; 
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #333333; 
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #009879;
}

.styled-table tbody tr:hover {
    background-color: #444444; 
}

.form-inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.search-group, .toggle-group {
    flex-grow: 1;
}

.search-group {
    display: flex;
    gap: 10px;
}

.search-btn, .toggle-btn {
    background-color: #4CAF50; 
    color: #ffffff; 
    border: none;
    padding: 10px 15px; 
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}

.toggle-btn {
    background-color: #f44336; 
}

.checkboxes-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    margin-bottom: 5px;
    width: 20px; 
    height: 20px; 
}


@media (max-width: 768px) {
    .search-group, .toggle-group {
        flex-basis: 100%;
    }

    .checkboxes-group {
        justify-content: center;
    }
}

.main-content {
    padding-top: 70px; 
    margin: 0 auto;
    width: 100%; 
    max-width: 1200px; 
    overflow: auto; 
}