:root {
    --primary: #6c5ce7;
    --primary-dark: #5649c0;
    --secondary: #fd79a8;
    --success: #00b894;
    --warning: #fdcb6e;
    --danger: #d63031;
    --light: #2d3436;
    --lighter: #636e72;
    --dark: #121212;
    --darker: #1a1a1a;
    --gray: #b2bec3;
    --gray-light: #3d3d3d;
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --btc-orange: #f7931a;
    --eth-purple: #627eea;
    --ltc-silver: #bebebe;
    --doge-yellow: #c2a633;
    --xrp-blue: #27a2db;
    --usdt-green: #26a17b;
    --bnb-yellow: #f3ba2f;
    --card-bg: #1e1e1e;
    --body-bg: #121212;
    --cashview-blue: #9fe8fc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--body-bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

body.hide-sidebar-header header,
body.hide-sidebar-header .sidebar {
    display: none !important;
}

body.hide-sidebar-header .dashboard {
    grid-template-columns: 1fr !important;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
}

header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

.logo img {
    height: 36px;
    width: auto;
}

.logo h1 {
    font-family: "Lexend", sans-serif;
    font-size: 24px;
    color: var(--white);
    margin-left: 10px;
}

.logo h1 span {
    color: var(--cashview-blue);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile-pic {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    overflow: hidden;
}

.profile-pic svg {
    width: 100%;
    height: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
    z-index: 1001;
}

.menu-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-light);
    gap: 10px;
}

.menu-title {
    font-family: "Lexend", sans-serif;
    font-size: 30px;
    margin-left: 40px;
    font-weight: 600;
    color: var(--white);
}

.menu-title span {
    color: var(--cashview-blue);
}

.close-btn {
    display: none;
    background: none;
    border: none;
    font-size: 30px;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.close-btn:hover {
    color: var(--primary-dark);
}

.dashboard {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 25px;
    width: 100%;
}

.sidebar {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 25px;
    height: fit-content;
    transition: var(--transition);
    position: relative;
    z-index: 1000;
}

.balance-card {
    background-color: var(--dark);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--gray-light);
    position: relative;
}

.crypto-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.crypto-action-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}
.buy-btn {
    background-color: rgba(0, 184, 148, 0.1);
    color: var(--success);
}

.buy-btn:hover {
    background-color: rgba(0, 184, 148, 0.2);
}

.sell-btn {
    background-color: rgba(214, 48, 49, 0.1);
    color: var(--danger);
}

.sell-btn:hover {
    background-color: rgba(214, 48, 49, 0.2);
}

.balance-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.refresh-btn {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
}

.refresh-btn:hover {
    color: var(--primary-dark);
    transform: rotate(180deg);
}

.loading-spinner {
    display: none;
    border: 4px solid var(--gray-light);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
    margin: 10px auto;
}

.loading-spinner.active {
    display: block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.nav-menu {
    list-style: none;
    margin-top: 10px;
}

.nav-item {
    margin-bottom: 12px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
}

.nav-link i {
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    color: var(--gray);
}

.nav-link span {
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-link:hover, .nav-link.active {
    background-color: rgba(108, 92, 231, 0.2);
    color: var(--primary);
}

.nav-link:hover i, .nav-link.active i {
    color: var(--primary);
}

.nav-link.active {
    font-weight: 600;
}

.main-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    overflow: hidden;
}

.page {
    display: none;
    width: 100%;
}

.page.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.welcome-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-bottom: 25px;
}

.welcome-card::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.welcome-card h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.welcome-card p {
    opacity: 0.9;
    margin-bottom: 20px;
    max-width: 60%;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 25px;
    width: 100%;
}

.action-btn {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
    min-width: 0;
    border: 1px solid var(--gray-light);
}

.action-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.action-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.action-btn:nth-child(1) .action-icon {
    background-color: rgba(0, 184, 148, 0.1);
    color: var(--success);
}

.action-btn:nth-child(2) .action-icon {
    background-color: rgba(214, 48, 49, 0.1);
    color: var(--danger);
}

.action-btn:nth-child(3) .action-icon {
    background-color: rgba(253, 203, 110, 0.1);
    color: var(--warning);
}

.action-btn:nth-child(4) .action-icon {
    background-color: rgba(108, 92, 231, 0.1);
    color: var(--primary);
}

.action-btn span {
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    text-align: center;
}

.balance-amount {
    font-size: 27px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.balance-subtext {
    color: var(--gray);
    font-size: 14px;
}

.balance-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.stat-item {
    background-color: var(--dark);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid var(--gray-light);
}

.stat-label {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 5px;
}

.stat-value {
    font-weight: 600;
    font-size: 16px;
    color: var(--white);
}

.transactions-section {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 25px;
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--gray-light);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h3 {
    font-size: 18px;
    color: var(--white);
}

.view-all {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.view-all:hover {
    color: var(--primary-dark);
}

.transactions-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    min-width: 600px;
}

.transactions-table th {
    text-align: left;
    padding: 10px 15px;
    color: var(--gray);
    font-weight: 500;
    font-size: 14px;
}

.transaction-row {
    background-color: var(--dark);
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.transaction-row:hover {
    background-color: var(--gray-light);
}

.transaction-row td {
    padding: 15px;
    vertical-align: middle;
}

.transaction-details {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.transaction-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--white);
}

.transaction-date {
    font-size: 12px;
    color: var(--gray);
}

.transaction-amount {
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.credit {
    color: var(--success);
}

.debit {
    color: var(--danger);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1100;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    width: 500px;
    max-width: 95%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    animation: modalFadeIn 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--gray-light);
    margin: 20px;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: var(--card-bg);
    z-index: 1;
}

.modal-header h3 {
    font-size: 18px;
    color: var(--white);
}

.modal-body {
    padding: 20px;
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--dark);
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    font-size: 14px;
    transition: var(--transition);
    color: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2);
}

.input-group {
    position: relative;
}

.input-group .form-control {
    padding-left: 40px;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid var(--gray-light);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    position: sticky;
    bottom: 0;
    background: var(--card-bg);
}

.btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn:disabled {
    background-color: var(--gray-light);
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover:not(:disabled) {
    background-color: var(--primary-dark);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--gray-light);
    color: var(--white);
}

.btn-outline:hover:not(:disabled) {
    background-color: var(--gray-light);
}

.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--success);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1100;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 90%;
}

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

.toast i {
    font-size: 18px;
}

.toast-danger {
    background-color: var(--danger);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: none;
}

.overlay.active {
    display: block;
}

.crypto-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 20px;
    margin-bottom: 20px;
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.crypto-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.crypto-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.crypto-name {
    display: flex;
    align-items: center;
    gap: 10px;
}

.crypto-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.crypto-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.btc-icon {
    background-color: var(--btc-orange);
}

.eth-icon {
    background-color: var(--eth-purple);
}

.ltc-icon {
    background-color: var(--ltc-silver);
}

.xrp-icon {
    background-color: var(--xrp-blue);
}

.usdt-icon {
    background-color: var(--usdt-green);
}

.bnb-icon {
    background-color: var(--bnb-yellow);
}

.crypto-price {
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
}

.crypto-price.updated {
    animation: priceUpdate 0.5s ease;
}

@keyframes priceUpdate {
    0% { background-color: rgba(108, 92, 231, 0.2); }
    100% { background-color: transparent; }
}

.crypto-change {
    font-size: 14px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.positive-change {
    background-color: rgba(0, 184, 148, 0.1);
    color: var(--success);
}

.negative-change {
    background-color: rgba(214, 48, 49, 0.1);
    color: var(--danger);
}

.crypto-balance {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.crypto-balance-label {
    font-size: 12px;
    color: var(--gray);
}

.crypto-balance-value {
    font-weight: 600;
    color: var(--white);
}

.crypto-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

.crypto-btn {
    padding: 8px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.crypto-buy {
    background-color: rgba(0, 184, 148, 0.1);
    color: var(--success);
}

.crypto-buy:hover {
    background-color: rgba(0, 184, 148, 0.2);
}

.crypto-sell {
    background-color: rgba(214, 48, 49, 0.1);
    color: var(--danger);
}

.crypto-sell:hover {
    background-color: rgba(214, 48, 49, 0.2);
}

.crypto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.crypto-address {
    background-color: var(--dark);
    border-radius: 8px;
    padding: 12px;
    margin-top: 15px;
    font-size: 13px;
    word-break: break-all;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    border: 1px solid var(--gray-light);
}

.copy-btn {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    margin-left: 10px;
}

.qr-code {
    width: 120px;
    height: 120px;
    margin: 15px auto;
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-light);
}

.qr-code img {
    max-width: 100%;
    max-height: 100%;
}

.crypto-tabs {
    display: flex;
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 20px;
    overflow-x: auto;
    scrollbar-width: none;
}

.crypto-tabs::-webkit-scrollbar {
    display: none;
}

.crypto-tab {
    padding: 10px 15px;
    cursor: pointer;
    font-weight: 500;
    color: var(--gray);
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.crypto-tab.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.crypto-tab-content {
    display: none;
}

.crypto-tab-content.active {
    display: block;
}

.crypto-modal .modal-content {
    width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 8px;
}

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

.crypto-amount-group .form-control {
    flex: 1;
}

.crypto-conversion {
    font-size: 13px;
    color: var(--gray);
    margin-top: 5px;
    text-align: right;
}

.page-title {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--white);
    margin-top: 10px;
    margin-left: 15px;
}

.card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 25px;
    margin-bottom: 25px;
    width: 100%;
    border: 1px solid var(--gray-light);
}

.filter-section {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    width: 100%;
}

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

.profile-section {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.profile-picture svg {
    width: 80%;
    height: 80%;
}

.info-group {
    margin-bottom: 15px;
}

.info-label {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 5px;
}

.info-value {
    font-weight: 500;
    color: var(--white);
}

.edit-form {
    display: none;
    margin-top: 15px;
}

.edit-form.active {
    display: block;
}

.transactions-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 15px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--dark);
}

.transactions-container::-webkit-scrollbar {
    height: 8px;
}

.transactions-container::-webkit-scrollbar-track {
    background: var(--dark);
    border-radius: 10px;
}

.transactions-container::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 10px;
}

.transaction-card {
    min-width: 280px;
    background-color: var(--dark);
    border-radius: var(--border-radius);
    padding: 15px;
    border: 1px solid var(--gray-light);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.transaction-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.transaction-card-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--white);
}

.transaction-card-amount {
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px; /* Ensures spacing between crypto and fiat amounts */
}

.transaction-card-details {
    font-size: 13px;
    color: var(--gray);
}

.transaction-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.transaction-card-date {
    font-size: 12px;
    color: var(--gray);
}

.auth-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.auth-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 30px;
    border: 1px solid var(--gray-light);
    width: 100%;
}

.auth-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--white);
    text-align: center;
}

.auth-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: var(--gray);
}

.auth-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.auth-link:hover {
    text-decoration: underline;
}

.empty-message {
    text-align: center;
    padding: 40px;
    color: var(--gray);
    font-size: 16px;
}

.auth-tabs {
    display: flex;
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 20px;
}

.auth-tab {
    flex: 1;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
    color: var(--gray);
    transition: var(--transition);
}

.auth-tab.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.auth-tab-content {
    display: none;
}

.auth-tab-content.active {
    display: block;
}

.get-started-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.get-started-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 40px;
    border: 1px solid var(--gray-light);
    width: 100%;
}

.get-started-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--white);
}

.get-started-subtitle {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 30px;
}

.get-started-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.get-started-logo img {
    height: 50px;
    width: auto;
}

.get-started-logo h1 {
    font-family: "Lexend", sans-serif;
    font-size: 28px;
    color: var(--white);
    margin-left: 10px;
}

.get-started-logo h1 span {
    color: var(--cashview-blue);
}

.get-started-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Show close button only in mobile view when sidebar is active */
@media (min-width: 1201px) {
    .close-btn {
        display: none;
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 15px;
    }
    
    .dashboard {
        grid-template-columns: 1fr;
    }

    .quick-actions {
        grid-template-columns: repeat(2, 1fr);
    }

    .balance-stats {
        grid-template-columns: 1fr;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .sidebar {
        position: fixed;
        top: 0;
        left: -300px;
        width: 280px;
        height: 100vh;
        z-index: 1000;
        overflow-y: auto;
        transition: var(--transition);
        padding: 25px;
    }

    .sidebar.active {
        left: 0;
    }

    .sidebar.active .close-btn {
        display: block;
    }

    .overlay.active {
        display: block;
    }

    .welcome-card p {
        max-width: 100%;
    }

    .profile-section {
        grid-template-columns: 1fr;
    }

    .crypto-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }

    .get-started-actions {
        flex-direction: column;
    }

    .get-started-container {
        padding: 15px;
    }

    .auth-container {
        padding: 20px;
    }

    .form-control {
        font-size: 16px;
        padding: 10px 12px;
    }

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

@media (max-width: 768px) {
    .quick-actions {
        grid-template-columns: 1fr;
    }

    header {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .transaction-row td {
        padding: 10px;
    }

    .transaction-title {
        font-size: 14px;
    }

    .transaction-amount {
        font-size: 14px;
    }
    
    .profile-picture {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    .crypto-modal .modal-content {
        width: 95%;
    }

    .transaction-card {
        min-width: 240px;
    }

    .get-started-title {
        font-size: 24px;
    }

    .get-started-logo h1 {
        font-size: 22px;
    }

    .get-started-container {
        padding: 10px;
    }

}
