body {
    font-family: 'Inter', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1e2329;
    color: #ffffff;
}
.container {
    max-width: 100%;
    padding: 20px;
}

/* Cabeçalho */
.wsa_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
}

.wsa_header .title {
    margin: 0;
    font-size: 1.3rem;
}

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

.wsa_header .dropbtn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-image: url('path/to/profile-picture.jpg');
    background-size: cover;
    background-position: center;
    border: none;
    cursor: pointer;
}

.wsa_header .dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #2c3e50;
    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
}

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

.wsa_header .dropdown-content a:hover {
    background-color: #3498db;
}

.wsa_header .show {
    display: block;
}

/* Abas de navegação primária */
.wsa_tabs {
    display: flex;
}
.wsa_tabs .tab {
    flex: 0;
    text-align: center;
    padding: 0.6rem 1rem;
    background-color: transparent;
    border: none;
    color: #ffffff;
    font-size: 0.9rem;
    cursor: pointer;
}
.wsa_tabs .tab.active {
    border-bottom: 2px solid #3498db;
}

/* Seleção de semana */
.wsa_week-selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #191D24;
}

.wsa_week-selector .btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 20px;
    padding: 0.5rem 0.9rem;
    cursor: pointer;
}

.wsa_week-selector .week-display {
    padding: 5px 15px;
    border-radius: 4px;
    border: 1px solid #aaa;
}

/* Estimate */
.wsa_estimate {
    display: flex;
    justify-content: space-between;
    background-color: #31658C;
    padding: .7rem;
    border-radius: 1.2rem;
    margin: 1rem;
    font-size: 0.9rem;
    font-weight: 400;
}

.wsa_estimate .label {
    text-align: left;
}

.wsa_estimate .value {
    flex-grow: 1;
    text-align: right;
}

/* Dias da semana */
.wsa_week-days {
    display: flex;
    justify-content: space-between;
    margin: 1rem;
}

.wsa_week-days .day {
    text-align: center;
    font-size: 0.7rem;
}

.wsa_week-days .day-status {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: 5px auto;
    background-color: #2c3e50;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.6rem;
}

.wsa_week-days .day-status.work {
    background-color: #2A8500;
}

/* Shifts */
.wsa_shifts .shift {
    background-color: #222A37;
    padding: 15px;
    margin-bottom: 10px;
}

.wsa_shifts .first-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #293548;
}

.wsa_shifts .shift-date {
    font-weight: 500;
}

.wsa_shifts .shift-type {
    background-color: #31373D;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.6rem;
}

.wsa_shifts .second-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wsa_shifts .linha-obs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color:#f5a006;
}

.wsa_shifts .shift-time {
    display: flex;
    align-items: center;
    color: #8B949E;
    font-size: 0.8rem;
}

.wsa_shifts .shift-time i {
    margin-right: 5px;
}

.wsa_shifts .shift-details {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: #2577B3;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    width: fit-content;
    margin-left: auto;
}

.wsa_shifts .shift-details span:first-child {
    margin-right: 10px;
}

/* Bottom info */
.wsa_bottom-info {
    margin: 1rem;
    font-size: 0.6rem;
    color: #aaa;
}

.wsa_bottom-info p {
    margin: 0;
}

/* Finance Consolidated */
.wsa_finance-consolidated {
    display: flex;
    justify-content: space-between;
    margin: 1rem;
    gap: 1rem;
}

.wsa_finance-consolidated .badge {
    flex: 1;
    padding: 0.8rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    font-size: 0.85rem;
}

.wsa_finance-consolidated .badge.blue {
    background-color: #0969DA;
}

.wsa_finance-consolidated .badge.green {
    background-color: #238636;
}

/* Finance Details */
.wsa_finance-details {
    margin: 1rem;
}

.wsa_finance-details .shift-item {
    background-color: #191D24;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.wsa_finance-details .shift-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.wsa_finance-details .date {
    font-weight: 500;
    font-size: 0.8rem;
}

.wsa_finance-details .status {
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
}

.wsa_finance-details .status.approved {
    background-color: #238636;
}

.wsa_finance-details .status.waiting {
    background-color: #9e6a03;
}

.wsa_finance-details .earnings {
    color: #2ea043;
    font-weight: 500;
}

.wsa_finance-details .shift-info {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: #8b949e;
    margin-bottom: 0.3rem;
}

.wsa_finance-details .shift-info .item {
    margin-right: 0.5rem;
}

.wsa_finance-details .shift-info .time-in .label {
    color: #3fb950;
}

.wsa_finance-details .shift-info .time-out .label {
    color: #f85149;
}

.wsa_finance-details .shift-info .break .label {
    color: #f0883e;
}

.wsa_finance-details .shift-info .total-time {
    color: #ffffff;
}

/* Login */
.wsa_login_body {
    font-family: 'Inter', sans-serif;
    background-color: #1e2329;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 0 20px;
    box-sizing: border-box;
}

.wsa_login_container {
    width: 100%;
}

.wsa_login_container .title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
}

.wsa_login_container .subtitle {
    font-size: 1rem;
    color: #8b949e;
    margin-bottom: 2rem;
    text-align: center;
}

.wsa_login_container .form-group {
    margin-bottom: 1.5rem;
}

.wsa_login_container .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #8b949e;
    font-size: 0.9rem;
}

.wsa_login_container .form-control {
    display: block;
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #30363d;
    border-radius: 6px;
    background-color: #ffffff;
    color: #1e2329;
    font-size: 1rem;
    box-sizing: border-box;
}

.wsa_login_container .form-control::placeholder {
    color: #8b949e;
}

.wsa_login_container .form-check {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.wsa_login_container .form-check-input {
    margin-right: 0.5rem;
}

.wsa_login_container .form-check-label {
    font-size: 0.9rem;
    color: #8b949e;
}

.wsa_login_container .forgot-password {
    font-size: 0.9rem;
    color: #4c6ef5;
    text-decoration: none;
}
.wsa_login_container .first-access {
    font-size: 0.9rem;
    color: #4c6ef5;
    text-decoration: none;
}

.wsa_login_container .btn-primary {
    width: 100%;
    padding: 0.75rem;
    background-color: #4c6ef5;
    border: none;
    border-radius: 6px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.wsa_login_container .btn-primary:hover {
    background-color: #3b5bdb;
}
.escondida{
    display: none !important;
}

.aba-recarregar{
    background-color: #0d610d !important;
    border-radius: 30px;
    position: absolute;
    right: 20px;
    padding-left: 12px !important;
    padding-right: 12px !important;
}
