body {
    padding-top: 56px; /* Height of the navbar */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
a{text-decoration:none}
.main-content-loggedin {
   padding-top: 1rem; /* Add some space below navbar */
}

.main-content-loggedout {
    flex: 1; /* Allow main content to grow */
}

.footer {
   /* Stick footer to bottom if content is short */
   /* Handled by flex layout on body */
}

/* Sidebar Styles (Bootstrap provides basics, customize as needed) */
.sidebar {
    position: fixed;
    top: 56px; /* Navbar height */
    bottom: 0;
    left: 0;
    z-index: 100; /* Behind navbar */
    padding: 0;
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
    height: calc(100vh - 56px); /* Full height minus navbar */
    overflow-y: auto; /* Scrollable sidebar */
}

.sidebar .nav-link {
    font-weight: 500;
    color: #333;
}

.sidebar .nav-link .bi {
    margin-right: 8px;
    color: #777;
}

.sidebar .nav-link.active {
    color: #0d6efd; /* Bootstrap primary blue */
}

.sidebar .nav-link.active .bi {
    color: #0d6efd;
}

.sidebar-heading {
    font-size: .75rem;
    text-transform: uppercase;
}

/* Main Panel Padding when sidebar is present */
.main-panel {
    padding-top: 1.5rem; /* Adjust as needed */
}

/* Balance Cards */
.balance-card {
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    color: #000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease-in-out;
}
.balance-card:hover {
    transform: translateY(-3px);
}
.balance-card .currency-flag {
    width: 30px;
    height: 30px;
    margin-right: 0.5rem;
    vertical-align: middle;
    border-radius: 50%;
}
.balance-card .currency-code {
    font-weight: bold;
    font-size: 1.2rem;
}
.balance-card .balance-amount {
    font-size: 1.8rem;
    font-weight: 300;
    margin-top: 0.5rem;
    display: block;
}
.bg-usd .bg-gbp .bg-eur .bg-aud{ background-color: #fff; } /* SeaGreen */


/* Multi-step form */
.step-content {
    display: none;
}
.step-content.active {
    display: block;
    animation: fadeIn 0.5s; /* Use animation from animations.css */
}

/* Trustworthiness/Security indicators (subtle) */
.form-control:focus {
    border-color: #86b7fe; /* Default Bootstrap focus */
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.secure-icon::before {
    font-family: 'Bootstrap-Icons';
    content: "\f4ce"; /* Example: lock icon */
    margin-right: 5px;
    color: green;
}

/* General Button Styling */
.btn {
    border-radius: 20px; /* Rounded buttons */
    padding: 10px 20px;
    transition: all 0.3s ease; /* Smooth transitions */
}
.btn-primary {
    /* Add gradient or subtle shadow */
     background-image: linear-gradient(to right, #0d6efd, #0a58ca);
     border: none;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .sidebar {
        top: 56px;
        height: auto;
        position: relative; /* Change sidebar position on small screens */
        box-shadow: none;
        overflow-y: initial;
    }
    .main-panel {
       /* No specific padding needed if sidebar collapses above */
    }
    .main-content-loggedin {
       padding-top: 0;
    }
     body {
        padding-top: 56px; /* Reset padding if needed */
    }
}