body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #181818;
    color: #e0e0e0;
    line-height: 1.6;
}


.result-message {
    margin-top: 20px;
    padding: 15px;
    border: 2px solid #000000;
    background-color: #e8f5e9;
    color: #000000;
    border-radius: 5px;
    font-family: Arial, sans-serif;
}
.result-message h3 {
    margin: 0 0 10px;
}
.result-message p {
    margin: 5px 0;
}
.result-message ul {
    list-style-type: disc;
    margin-left: 20px;
}
.result-message a {
    color: #ffffff;
    text-decoration: none;
}
.result-message a:hover {
    text-decoration: underline;
}




.notification {
    position: fixed;
    top: 10px;
    right: 10px;
    padding: 15px 20px;
    border-radius: 6px;
    font-size: 14px;
    color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 1000;
}

.notification.success {
    background-color: #28a745;
}

.notification.error {
    background-color: #dc3545;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

.container {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.filters {
    display: flex;
    gap: 15px; 
    justify-content: flex-start; 
    flex-wrap: wrap; 
}

.filters .form-group {
    flex: 1; 
    min-width: 200px; 
}

#nomeFilter {
    max-width: 90%; 
}

#tokenFilter {
    max-width: 90%; 
}

.filters .form-group label {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
}

.filters .form-group input {
    width: 100%; 
    padding: 10px 12px;
    border: 1px solid #444; 
    border-radius: 6px;
    background-color: #2b2b2e;
    color: #f1f1f1;
    font-size: 14px;
    transition: all 0.3s ease;
}

.filters .form-group input:focus {
    border-color: #58a6ff;
    outline: none;
    box-shadow: 0 0 5px rgba(88, 166, 255, 0.5); 
}

.filters .form-group input::placeholder {
    color: #b3b3b3;
    font-style: italic;
}

@media (max-width: 768px) {
    .filters {
        flex-wrap: wrap; 
        gap: 10px; 
    }

    .filters .form-group {
        flex: 1 1 100%; 
        max-width: 100%;
    }
}



h1 {
    text-align: center;
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bold;
}

h2 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #c0c0c0;
    text-transform: uppercase;
}

.form-group label {
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
    color: #e0e0e0;
}

.base-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.base-button {
    background-color: #000000;
    color: #ffffff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.base-button:hover {
    background-color: #f70101;
}

.base-button.selected {
    background-color: #ff0000;
    font-weight: bold;
}

.select-all-container {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.select-all-button,
.deselect-all-button {
    background-color: #6c757d;
    color: #ffffff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.select-all-button:hover,
.deselect-all-button:hover {
    background-color: #5a6268;
}

.quick-expiration {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
}

.quick-expiration button {
    flex: 1;
    padding: 10px;
    background-color: #050505;
    border-radius: 5px;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.quick-expiration button.selected {
    background-color: #ff0000;
    font-weight: bold;
}

.quick-expiration button:hover {
    background-color: #ff0000;
}

button[type="submit"] {
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #ff0000;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #2a2a2a;
    border-radius: 6px;
    overflow: hidden;
}

table thead {
    background-color: #333333;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
}

table th,
table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #444444;
    font-size: 14px;
    color: #e0e0e0;
}

table tr:nth-child(even) {
    background-color: #242424;
}

button.delete {
    background-color: #dc3545;
    color: #ffffff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

button.delete:hover {
    background-color: #c82333;
}

button.edit {
    background-color: #1c07ff;
    color: #ffffff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

button.edit:hover {
    background-color: #1c07ff;
}

input,
select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #444444;
    border-radius: 6px;
    font-size: 14px;
    background-color: #1e1e1e;
    color: #e0e0e0;
}

input:focus,
select:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.5);
}
