/* Fixed Deposit Maturity Styles */
.result-maturity {
    border-top: 2px solid var(--accent-blue);
    padding-top: 20px;
}
.result-maturity-label {
    font-size: 18px;
}
.result-maturity-value {
    font-size: 22px;
    color: var(--success);
}
/* Utility class for hiding elements */
.hidden {
    display: none !important;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Animation classes */
.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-up {
    animation: slideInUp 0.6s ease-out forwards;
}

.animate-slide-down {
    animation: slideInDown 0.6s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.5s ease-out forwards;
}

.animate-fade-scale {
    animation: fadeInScale 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Stagger animation delays */
.animate-delay-1 {
    animation-delay: 0.1s;
    opacity: 0;
}

.animate-delay-2 {
    animation-delay: 0.2s;
    opacity: 0;
}

.animate-delay-3 {
    animation-delay: 0.3s;
    opacity: 0;
}

.animate-delay-4 {
    animation-delay: 0.4s;
    opacity: 0;
}

.animate-delay-5 {
    animation-delay: 0.5s;
    opacity: 0;
}
/* ...existing code... */
/* Extracted CSS from index.html for Standard Bank App */
:root {
    --primary: #4361ee;
    --primary-dark: #3a56d4;
    --secondary: #7209b7;
    --accent: #4cc9f0;
    --success: #4ade80;
    --warning: #f59e0b;
    --error: #ef4444;
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --bg-card-light: rgba(255, 255, 255, 0.05);
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.1);
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    --radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.theme-blue {
    --bg-gradient: linear-gradient(135deg, #003399, #001a66);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.25);
    --accent-blue: #66ccff;
    --btn-blue: #3399ff;
    --btn-hover: #66ccff;
    --white: #ffffff;
}
.theme-dark {
    --bg-gradient: linear-gradient(135deg, #0f172a, #1e293b);
    --glass-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --accent-blue: #4cc9f0;
    --btn-blue: #4361ee;
    --btn-hover: #4cc9f0;
    --white: #f8fafc;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg-gradient);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    line-height: 1.6;
    transition: background 0.5s ease;
}
.theme-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 100;
}
.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
}
.theme-toggle span {
    font-size: 14px;
    font-weight: 500;
}
.home-button {
    position: absolute;
    top: 20px;
    right: 180px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 100;
    text-decoration: none;
    color: var(--white);
}
.home-button:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}
.home-button span {
    font-size: 14px;
    font-weight: 500;
}

/* Modern Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid var(--glass-border);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar.open {
    transform: translateX(0);
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.sidebar-logo-text {
    display: flex;
    flex-direction: column;
}

.sidebar-logo-text h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: var(--white);
}

.sidebar-logo-text p {
    font-size: 11px;
    color: var(--text-muted);
    margin: 0;
}

.sidebar-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.sidebar-nav {
    padding: 20px 0;
}

.sidebar-section {
    margin-bottom: 24px;
}

.sidebar-section-title {
    padding: 0 20px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    border-left: 3px solid transparent;
    position: relative;
}

.sidebar-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: var(--accent-blue);
    transform: translateX(5px);
}

.sidebar-link.active {
    background: rgba(102, 204, 255, 0.15);
    border-left-color: var(--accent-blue);
    color: var(--accent-blue);
}

.sidebar-link i {
    width: 20px;
    text-align: center;
    font-size: 18px;
}

.sidebar-link span {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.sidebar-link .badge {
    background: var(--accent-blue);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 600;
}

.sidebar-divider {
    height: 1px;
    background: var(--glass-border);
    margin: 20px;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid var(--glass-border);
    margin-top: auto;
}

.sidebar-footer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-footer-item:hover {
    color: var(--accent-blue);
    transform: translateX(5px);
}

.sidebar-footer-item i {
    width: 20px;
    text-align: center;
}

/* Hamburger Menu Button */
.menu-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    position: relative;
    transition: var(--transition);
}

.menu-toggle span::before,
.menu-toggle span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.menu-toggle span::before {
    top: -6px;
}

.menu-toggle span::after {
    bottom: -6px;
}

.menu-toggle.active span {
    background: transparent;
}

.menu-toggle.active span::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle.active span::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Adjust home button position when sidebar is open */
body.sidebar-open .home-button {
    left: 300px;
}

body.sidebar-open .theme-toggle {
    right: 20px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .sidebar {
        width: 280px;
    }
    
    .menu-toggle {
        top: 15px;
        left: 15px;
    }
    
    body.sidebar-open .home-button {
        left: 280px;
    }
}

@media (max-width: 480px) {
    .sidebar {
        width: 100%;
        max-width: 320px;
    }
    
    .menu-toggle {
        width: 40px;
        height: 40px;
    }
}
@media (max-width: 768px) {
    .home-button {
        right: 140px;
        padding: 8px 12px;
    }
    .home-button span {
        display: none;
    }
}
@media (max-width: 480px) {
    .theme-toggle {
        position: relative;
        top: 0;
        right: 0;
        align-self: flex-end;
        margin-bottom: 10px;
    }
    .home-button {
        position: relative;
        top: 0;
        right: 0;
        align-self: flex-end;
        margin-bottom: 10px;
        margin-left: 10px;
    }
}
.app-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.app-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    background: var(--glass-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    text-align: center;
    position: relative;
}
.logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.header-text h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}
.header-text p {
    font-size: 16px;
    color: var(--text-secondary);
}
.quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 10px;
}
.stat-card {
    background: var(--glass-bg);
    border-radius: var(--radius);
    padding: 16px;
    border: 1px solid var(--glass-border);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    text-align: center;
    transition: var(--transition);
}
.stat-card:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 5px;
}
.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}
.card {
    background: var(--glass-bg);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}
.card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}
.card-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}
.card-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 16px;
}
.tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.tool-link {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    height: 100%;
}
.tool-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px) scale(1.02);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.tool-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--btn-blue), var(--accent-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}
.tool-info {
    flex: 1;
}
.tool-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
.tool-description {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}
.tool-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.status-new {
    background: rgba(76, 201, 240, 0.2);
    color: var(--accent-blue);
}
.status-popular {
    background: rgba(74, 222, 128, 0.2);
    color: var(--success);
}
.tool-arrow {
    align-self: flex-end;
    font-size: 18px;
    color: var(--accent-blue);
    transition: var(--transition);
}
.tool-link:hover .tool-arrow {
    transform: translateX(5px);
}
.coming-soon {
    opacity: 0.7;
}
.coming-soon .tool-icon {
    background: rgba(255, 255, 255, 0.2);
}
.footer {
    width: 100%;
    max-width: 1200px;
    margin-top: 30px;
    padding: 24px;
    background: var(--glass-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
    text-align: center;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}
.footer-contact {
    margin-bottom: 20px;
}
.footer-contact p {
    margin-bottom: 8px;
    color: var(--text-secondary);
}
.footer-contact a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: var(--transition);
}
.footer-contact a:hover {
    color: white;
    text-decoration: underline;
}
.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--btn-blue);
    transform: translateY(-3px);
}
.footer-credit {
    font-size: 14px;
    color: var(--text-muted);
}
.footer-credit span {
    color: var(--accent-blue);
    font-weight: 600;
}
@media (max-width: 768px) {
    .tool-grid {
        grid-template-columns: 1fr;
    }
    .quick-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    body {
        padding: 16px;
    }
    .theme-toggle {
        position: relative;
        top: 0;
        right: 0;
        align-self: flex-end;
        margin-bottom: 10px;
    }
    .app-header {
        padding: 20px;
    }
    .logo {
        width: 40px;
        height: 40px;
    }
    .header-text h1 {
        font-size: 24px;
    }
    .card {
        padding: 20px;
    }
    .tool-link {
        padding: 16px;
    }
    .tool-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .footer {
        padding: 20px;
    }
    .quick-stats {
        grid-template-columns: 1fr;
    }
}
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: var(--btn-blue);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue);
}

/* Calculator Page Styles */
.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--btn-blue), var(--accent-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

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

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

.input-field {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
    outline: none;
}

.input-field:focus {
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(102, 204, 255, 0.1);
    transform: translateY(-2px);
}

.input-field::placeholder {
    color: var(--text-muted);
}

.toggle-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-container:hover {
    background: rgba(255, 255, 255, 0.1);
}

.toggle-container input[type="checkbox"] {
    display: none;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 13px;
    transition: var(--transition);
}

.toggle-switch::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    top: 3px;
    left: 3px;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-container input[type="checkbox"]:checked + .toggle-switch {
    background: var(--btn-blue);
}

.toggle-container input[type="checkbox"]:checked + .toggle-switch::after {
    left: 27px;
}

.btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.btn {
    padding: 12px 24px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    flex: 1;
    min-width: 120px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--btn-blue), var(--accent-blue));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(51, 153, 255, 0.3);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px) scale(1.02);
}

.btn-secondary:active {
    transform: translateY(0) scale(0.98);
}

.result-card {
    margin-top: 24px;
}

.result-card:not(.hidden) {
    animation: fadeInScale 0.5s ease-out forwards;
}

.result-card.hidden {
    animation: none;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
}

/* Loading spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--accent-blue);
    animation: spin 0.8s linear infinite;
}

/* Smooth transitions for all interactive elements */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--glass-border);
}

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

.result-label {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

.result-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-blue);
}

.receipt {
    margin-top: 20px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.8;
    white-space: pre-wrap;
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 400px;
    overflow-y: auto;
}

.history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.history-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px) scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.history-date {
    font-size: 14px;
    color: var(--text-secondary);
}

.history-amount {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-blue);
}

.rate-info {
    margin: 24px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.rate-info h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--accent-blue);
}

.rate-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.rate-period {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.rate-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--success);
}

/* Mobile adjustments for calculator pages */
@media (max-width: 480px) {
    .btn-group {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .result-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .rate-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}