body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #1b2131;
    color: #fff;
}

.dashboard-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

header {
    background-color: #1b2131;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    display: flex;
    align-items: center;
}

header .logo img {
    width: 40px;
    margin-right: 10px;
}

header .user-info {
    display: flex;
    align-items: center;
}

header .user-info p {
    margin-right: 20px;
}

header .logout-btn {
    color: #fff;
    text-decoration: none;
    background-color: #f96900;
    padding: 10px 15px;
    border-radius: 5px;
}

.delete-btn {
    color: #fff;
    text-decoration: none;
    background-color: #f96900;
    padding: 10px 15px;
    border-radius: 5px;
}

.sidebar {
    width: 200px;
    background-color: #1b2131;
    position: fixed;
    top: 80px;
    bottom: 0;
    padding-top: 20px;
}

.sidebar ul {
    list-style: none;
    padding-left: 0;
}

.sidebar ul li {
    margin-bottom: 20px;
}

.sidebar ul li a {
    color:#8e9199;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
}

.sidebar ul li a:hover {
    color:#fff;
    background-color: #232b3b;
}

main {
    margin-left: 200px;
    padding: 20px;
    overflow-y: auto;
}

.account-info, .statistics, .operations-log {
    background-color: #131721;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.account-info h2, .statistics h2, .operations-log h2 {
    margin-top: 0;
    color: #f96900;
}

.account-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.buttons {
    margin-top: 20px;
}

.buttons button {
    padding: 10px 20px;
    margin-right: 15px;
    background-color: #353c4d;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.buttons button:hover {
    background-color: #f96900;
    cursor: pointer;
}

.statistics .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.stat-item {
    background-color: #191f2d;
   
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.stat-item p {
    margin: 0;
    font-size: 14px;
    color: #bbb;
}

.stat-item h3 {
    margin: 10px 0 0 0;
    font-size: 24px;
    color: #fff;
}

.operations-log table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.operations-log th, .operations-log td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #353c4d;
}

.operations-log th {
    background-color: #353c4d;
}

#status {
    color: #f96900;
    font-weight: bold;
}


.add-account-form {
    background-color: #131721;
    padding: 20px;
    border-radius: 5px;
}

.add-account-form h2 {
    margin-top: 0;
    color: #f96900;
}

.add-account-form form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 5px;
    display: block;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #2a2d34;
    color: #fff;
    font-size: 16px;
}

.form-group input::placeholder {
    color: #777;
}

.form-group small {
    font-size: 12px;
    color: #777;
    display: block;
    margin-top: 5px;
}

.form-buttons {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.form-buttons button {
    padding: 10px 20px;
    margin-left: 15px;
    background-color: #f96900;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.form-buttons button:hover {
    background-color: #16a085;
    cursor: pointer;
}


.operations {
    background-color: #131721;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.operations h2 {
    margin-top: 0;
    color: #f96900;
}

.operations table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.operations th, .operations td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #444;
}

.operations th {
    background-color: #f96900;
    color: #fff;
}

.operations td {
    color: #fff;
}

.pagination {
    margin-top: 20px;
    text-align: center;
}

.pagination a {
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    background-color: #353c4d;
    margin: 0 4px;
    border-radius: 5px;
}

.pagination a:hover {
    background-color: #444;
}

.pagination .active-page {
    background-color: #f96900;
}

.operations-log {
    background-color: #131721;
    padding: 20px;
    border-radius: 5px;
}

.operations-log h2 {
    margin-top: 0;
    color: #f96900;
}

.operations-log ul {
    list-style-type: none;
    padding: 0;
    margin-top: 20px;
}

.operations-log li {
    background-color: #353c4d;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    color: #fff;
    font-size: 16px;
}

.settings-form {
    background-color: #131721;
    padding: 20px;
    border-radius: 5px;
}

.settings-form h2 {
    margin-top: 0;
    color: #f96900;
}

.settings-form h3 {
    color: #f96900;
    margin-top: 40px;
}

.settings-form form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 5px;
    display: block;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #1b1b1b;
    color: #fff;
    font-size: 16px;
}

.form-group input::placeholder {
    color: #131721;
}

.form-buttons {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.form-buttons button {
    padding: 10px 20px;
    margin-left: 15px;
    background-color: #f96900;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.form-buttons button:hover {
    background-color: #f94f00;
    cursor: pointer;
}

hr {
    border: 0;
    height: 1px;
    background-color: #444;
    margin: 40px 0;
}

.user-display {
    background-color: #1b1b1b;
    padding: 10px;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    margin-top: 5px;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #1b1b1b;
}

.login-box {
    background-color: #2d2d2d;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    width: 400px;
}

.login-box .logo {
    margin-bottom: 30px;
}

.login-box .logo img {
    width: 200px;
    margin-bottom: 10px;
}

.login-box .logo h1 {
    color: #f96900;
    margin: 0;
}

.login-box form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.login-box .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.login-box .form-group label {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 5px;
    display: block;
}

.login-box .form-group input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #1b1b1b;
    color: #fff;
    font-size: 16px;
}

.login-box .form-group input::placeholder {
    color: #777;
}

.login-box .form-buttons {
    margin-top: 20px;
}

.login-box .form-buttons button {
    width: 100%;
    padding: 10px;
    background-color: #f96900;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
}

.login-box .form-buttons button:hover {
    background-color: #f94c00;
    cursor: pointer;
}

.login-box .extra-options {
    margin-top: 20px;
}

.login-box .extra-options a {
    color: #f96900;
    text-decoration: none;
    margin: 0 10px;
}

.login-box .extra-options a:hover {
    text-decoration: underline;
}
.registration-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #1b1b1b;
}
.registration-box {
    background-color: #2d2d2d;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    width: 400px;
}
.registration-box .logo {
    margin-bottom: 30px;
}
.registration-box .logo img {
    width: 200px;
    margin-bottom: 10px;
}
.registration-box .logo h1 {
    color: #f96900;
    margin: 0;
}
.registration-box form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.registration-box .form-group {
    margin-bottom: 20px;
    text-align: left;
}
.registration-box .form-group label {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 5px;
    display: block;
}
.registration-box .form-group input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #1b1b1b;
    color: #fff;
    font-size: 16px;
}
.registration-box .form-group input::placeholder {
    color: #777;
}
.registration-box .form-buttons {
    margin-top: 20px;
}
.registration-box .form-buttons button {
    width: 100%;
    padding: 10px;
    background-color: #f96900;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
}
.registration-box .form-buttons button:hover {
    background-color: #16a085;
    cursor: pointer;
}
.registration-box .extra-options {
    margin-top: 20px;
}
.registration-box .extra-options a {
    color: #f96900;
    text-decoration: none;
    margin: 0 10px;
}
.registration-box .extra-options a:hover {
    text-decoration: underline;
}

.buttons {
    display: flex;
    gap: 10px;  
}

.buttons form,
.buttons a {
    flex: 0 0 auto;  
}

.buttons button {
    width: 100%;  
}

.delete-account-btn {
    background-color: #e74c3c;
    color: white;
}

.delete-account-btn:hover {
    background-color: #c0392b;
}
#status {
    transition: all 0.3s ease;
}

#status:contains('Ativando o bot...') {
    color: #ffa500;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

#toggle-btn:disabled {
    cursor: wait;
}