@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&display=swap');

/* Custom Styles specifically for Receipt Page */

:root {
    --receipt-slate: #515c6f;
    --receipt-slate-dark: #3b4255;
    --receipt-teal: #14b8a6;
    --receipt-teal-lightest: #f0fdfa;
    --receipt-teal-light: #ccfbf1;
    --receipt-teal-bright: #2dd4bf;
    --receipt-teal-dark: #0f766e;
    --receipt-gray-light: #f8fafc;
}

body.bg-light-gray {
    background-color: #f3f5f7 !important; /* Slightly darker to contrast with white card */
}

.text-teal { color: var(--receipt-teal) !important; }
.text-teal-bright { color: var(--receipt-teal-bright) !important; }
.text-teal-dark { color: var(--receipt-teal-dark) !important; }
.bg-teal-lightest { background-color: var(--receipt-teal-lightest) !important; }
.border-teal-light { border-color: var(--receipt-teal-light) !important; }

.text-slate { color: var(--receipt-slate) !important; }
.bg-slate { background-color: #4b5563 !important; }
.bg-slate-dark { 
    background: linear-gradient(145deg, #475166 0%, #303746 100%) !important; 
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.1);
}

.bg-light-gray { background-color: var(--receipt-gray-light) !important; }

.company-logo-box {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--receipt-teal-bright), var(--receipt-teal-dark));
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(20, 184, 166, 0.3);
}

.receipt-card {
    border: none !important;
    box-shadow: 0 15px 35px -5px rgba(0,0,0,0.06), 0 5px 15px -5px rgba(0,0,0,0.04) !important;
    background-color: #ffffff;
}

.signature-font {
    font-family: 'Caveat', cursive;
    font-size: 2.2rem !important;
    color: #334155 !important;
}

.share-btn {
    background-color: #89e8ca !important;
    color: var(--receipt-teal-dark) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.btn-primary-slate {
    background-color: var(--receipt-slate);
    color: #fff;
    border: none;
    font-weight: 600;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    transition: background-color 0.2s;
}

.btn-primary-slate:hover {
    background-color: #3b4353;
    color: #fff;
}

/* Bottom Nav v2 */
.bottom-nav-v2 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fdfdfd;
    padding: 0.5rem 1rem 0.5rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    border-top: 1px solid #e2e8f0;
}

.bottom-nav-v2 .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #94a3b8;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 60px;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.bottom-nav-v2 .nav-item i {
    font-size: 1.3rem;
    margin-bottom: 0.1rem;
}

.bottom-nav-v2 .nav-item.active {
    color: var(--receipt-teal-dark);
}

.bottom-nav-v2 .nav-item.active i {
    color: var(--receipt-teal-dark);
}
