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

body,
html {
    font-family: Helvetica, Arial, sans-serif;
    height: 100vh;
    width: 100%;
    background: #f8f9fa;
}

.logo-company {
    width: 90%;
    display: block;
    position: relative;
    top: -10px;
    margin: 0 auto;
    cursor: pointer;
}

.sidebar {
    width: 250px;
    height: 100vh;
    background: #151b26;
    color: #fff;
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
}

.circle-icon{
    width: 40px;
    height: 40px;
    background-color: #7d7878;
    border-radius: 50%;
    position: absolute;
    bottom: 14px;
    right: -18px;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.circle-icon i {
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.menu {
    list-style: none;
    padding: 0;
}

.menu li {
    margin-bottom: 10px;
}

.menu a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 5px;
}

.menu a i {
    width: 20px;
    text-align: center;
}

.menu a:hover {
    background: linear-gradient(90deg, #db542f, #00458d, #002a57);
}

.submenu .submenu-items {
    list-style: none;
    padding-left: 20px;
    display: none;
}

.submenu a {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.submenu a i:first-child {
    width: 20px;
    text-align: center;
}

.submenu a i:last-child {
    transition: transform 0.3s;
    margin-left: auto;
}

.active {
    background: linear-gradient(90deg, #db542f, #00458d, #002a57);
}

.submenu.active .submenu-items {
    display: block;
}

.submenu.active a i:last-child {
    transform: rotate(180deg);
}

.content {
    margin-left: 250px;
    padding: 80px 20px 20px;
}

.nav-bar {
    background: linear-gradient(90deg, #db542f, #00458d, #002a57);
    top: 0;
    left: 250px;
    width: calc(100% - 250px);
    z-index: 1000;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 14px;
    position: fixed;
}

.nav-left {
    display: flex;
    flex-direction: column;
}

.nav-left h4 {
    margin: 0;
    font-weight: bold;
    font-size: 18px;
}

.nav-left span {
    font-size: 12px;
    opacity: 0.8;
}

.nav-right {
    display: flex;
    align-items: center;
}

.exchange-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    margin-right: 10px;
    font-size: 14px;
    cursor: pointer;
}

.exchange-box i {
    margin-right: 8px;
    font-size: 16px;
}

.exchange-box small {
    display: block;
    font-size: 11px;
    opacity: 0.8;
}

.nav-icons {
    display: flex;
    cursor: pointer;
    align-items: center;
}

.nav-icons i {
    font-size: 18px;
    margin-left: 15px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease-in-out;
}

.admin-icon {
    width: 40px;
    height: 40px;
    background: #0d034f;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 16px;
}

.admin-section {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.login-button {
    position: relative;
    background: linear-gradient(90deg, #db542f, #00458d, #002a57) !important;
    color: #fff;
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    border-radius: 20px;
    display: inline-block;
    z-index: 1;
}

.login-button::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, #db542f, #00458d, #002a57);
    border-radius: 22px;
    z-index: -1;
}

.forgot-link {
    text-decoration: none;
}

.forgot-link:hover {
    text-decoration: none;
}

.admin-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 8px 0;
    min-width: 200px;
    z-index: 100;
    transform: translateX(0%);
}

.admin-menu a {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    color: black;
    text-decoration: none;
    transition: background 0.3s;
}

.admin-menu a i {
    margin-right: 8px;
}

.admin-menu a:hover {
    background: #f0f0f0;
}

.table-card {
    border-radius: 10px;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
    cursor: pointer;
}

.stat-card {
    border-radius: 10px;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: #6c757d;
    font-size: 14px;
}

.stat-header i {
    font-size: 18px;
    color: #6c757d;
}

.stat-card h3 {
    font-size: 28px;
    color: #212529;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 5px;
}

.stat-change {
    font-size: 14px;
    font-weight: bold;
}

.text-success {
    color: #28a745 !important;
}

.text-danger {
    color: #dc3545 !important;
}

.info-card {
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 20px;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.activity-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f6f1f1;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-item div {
    display: flex;
    flex-direction: column;
}

.activity-item p {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
}

.text-muted {
    font-size: 12px;
    color: #6c757d;
}

.activity-item i {
    color: #6c757d;
    font-size: 18px;
}

.table {
    border: none !important;
}

.table th,
.table td {
    border: none !important;
}

.modal-body,
.modal {
    border: none !important;
}

.title-form {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 30px;
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.input-container input {
    padding-left: 35px;
    padding-right: 35px;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    background: #f8f9fa !important;
    border: 1px solid #ccc;
    padding-right: 40px;
}

.input-icon-left {
    position: absolute;
    left: 10px;
    color: #555;
}

.input-icon-right {
    position: absolute;
    right: 10px;
    color: #555;
    cursor: pointer;
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.input-container input {
    padding-left: 35px;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    background: #f8f9fa !important;
    border: 1px solid #ccc;
}

.input-icon-left {
    position: absolute;
    left: 10px;
    color: #555;
}

#password_confirmation,
#password,
#email {
    background: #f8f9fa !important;
}