
/* =========================
   GENERAL
========================= */

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

body{
    background:#f5f5f5;
    font-family:"Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color:#234f46;
    line-height:1.6;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    height:auto;
}



/* =========================
   NAVBAR
========================= */

.navbar{
    background:#234f46;
    padding:18px 0;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}



.nav-logo{
    color:white;
    font-size:24px;
    font-weight:700;
}

.nav-links{
    display:flex;
    gap:30px;
    align-items:center;
}

.nav-links a{
    color:white;
    font-weight:500;
    transition:color .3s ease;
}

.nav-links a:hover{
    color:#d4af37;
}

/* =========================
   MAIN CONTENT
========================= */

.main-content{
    padding:40px 0;
}

/* =========================
   CARDS
========================= */

.card{
    background:white;
    border-radius:12px;
    padding:40px;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
    margin-bottom:30px;
}

.card h1,
.card h2,
.card h3{
    margin-bottom:20px;
    color:#234f46;
}

.card p{
    margin-bottom:15px;
}

/* =========================
   BUTTONS
========================= */

.btn{
    display:inline-block;
    background:#d4af37;
    color:#234f46;
    padding:12px 24px;
    border:none;
    border-radius:6px;
    font-weight:600;
    cursor:pointer;
    transition:all .3s ease;
}

.btn:hover{
    background:#c5a22d;
    transform:translateY(-1px);
}

.btn-secondary{
    background:#234f46;
    color:white;
}

.btn-secondary:hover{
    background:#1b3d36;
}

/* =========================
   FORMS
========================= */

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

label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

input,
select,
textarea{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:6px;
    font-size:16px;
    transition:border-color .3s ease;
}

input:focus,
select:focus,
textarea:focus{
    outline:none;
    border-color:#d4af37;
}

textarea{
    min-height:120px;
    resize:vertical;
}

/* =========================
   FLASH MESSAGES
========================= */

.flash-success{
    background:#e8f5e9;
    color:#2e7d32;
    padding:14px;
    border-radius:6px;
    margin-bottom:20px;
}

.flash-error{
    background:#ffebee;
    color:#c62828;
    padding:14px;
    border-radius:6px;
    margin-bottom:20px;
}

.flash-warning{
    background:#fff8e1;
    color:#ef6c00;
    padding:14px;
    border-radius:6px;
    margin-bottom:20px;
}

/* =========================
   LOGIN PAGE
========================= */

.login-wrapper{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
}

.login-card{
    width:460px;
    background:white;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.login-header{
    background:#234f46;
    padding:30px;
    text-align:center;
}

.login-header img{
    max-height:70px;
}

.login-header h1{
    color:white;
    margin-top:15px;
}

.login-body{
    padding:35px;
}

.login-body h2{
    text-align:center;
    margin-bottom:30px;
    color:#234f46;
}

.login-options{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
    font-size:14px;
}

.login-btn{
    width:100%;
    background:#d4af37;
    color:#234f46;
    border:none;
    padding:14px;
    border-radius:6px;
    font-weight:700;
    cursor:pointer;
    transition:all .3s ease;
}

.login-btn:hover{
    background:#c5a22d;
    transform:translateY(-1px);
}

.register-link{
    text-align:center;
    margin-top:25px;
}

.register-link a{
    color:#234f46;
    font-weight:600;
}

.register-link a:hover{
    color:#d4af37;
}

/* =========================
   TABLES
========================= */

.table{
    width:100%;
    border-collapse:collapse;
    background:white;
}

.table th{
    background:#234f46;
    color:white;
    padding:14px;
    text-align:left;
}

.table td{
    padding:14px;
    border-bottom:1px solid #eee;
}

.table tr:hover{
    background:#fafafa;
}

/* =========================
   FOOTER
========================= */

.footer{
    background:#234f46;
    color:white;
    text-align:center;
    padding:20px;
    margin-top:50px;
}

/* =========================
   MOBILE
========================= */

@media (max-width:768px){

    .nav-container{
        flex-direction:column;
        gap:15px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .login-card{
        width:100%;
    }

    .card{
        padding:25px;
    }

    .login-body{
        padding:25px;
    }

    .table{
        display:block;
        overflow-x:auto;
    }
}
```
```css
/* HOME PAGE */

.hero-card{
    background:white;
    border-radius:12px;
    padding:90px 60px;
    text-align:center;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
    margin-bottom:30px;
}

.hero-card h1{
    font-size:48px;
    margin-bottom:25px;
}

.hero-text{
    font-size:24px;
    max-width:850px;
    margin:0 auto 40px;
    line-height:1.6;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.hero-buttons .btn{
    min-width:220px;
    text-align:center;
}

.section-title{
    text-align:center;
    margin-bottom:30px;
}

.steps-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap:20px;
}

.step-card{
    background:#fafafa;
    border-radius:10px;
    padding:25px;
    border:1px solid #eee;
}

.step-card h3{
    margin-bottom:12px;
}

.benefits{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    font-weight:600;
}

@media (max-width:768px){

    .hero-card{
        padding:50px 25px;
    }

    .hero-card h1{
        font-size:34px;
    }

    .hero-text{
        font-size:18px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }
}
```
```css
/* DASHBOARD */

.dashboard-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
    gap:20px;
    margin-top:20px;
}

.dashboard-tile{
    background:#fafafa;
    border:1px solid #eee;
    border-radius:10px;
    padding:25px;
    transition:all .3s ease;
}

.dashboard-tile:hover{
    transform:translateY(-3px);
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.dashboard-tile h3{
    color:#234f46;
    margin-bottom:10px;
}

.dashboard-tile p{
    color:#666;
}
```
.container{
    width:95%;
    max-width:none;
    margin:0 auto;
}
.page-content{
    padding:20px;
}
.login-header h1{
    color:white;
    font-size:32px;
    margin-top:15px;
    margin-bottom:5px;
    font-weight:700;
}

.login-header p{
    color:rgba(255,255,255,.85);
    font-size:15px;
}

.login-subtitle{
    text-align:center;
    color:#777;
    margin-bottom:30px;
    line-height:1.6;
}

.error-message{
    background:#fff4f4;
    color:#c62828;
    padding:14px;
    border-radius:10px;
    margin-bottom:20px;
    text-align:center;
    border:1px solid #ffd6d6;
}
.navbar{
    background:white;
    border-bottom:1px solid #ececec;
    padding:10px 0;
}

.nav-container{
    width:100%;
    padding:0 30px;

    display:flex;
    align-items:center;
}

.nav-links{
    margin-left:auto;
    display:flex;
    gap:30px;
    align-items:center;
}

.navbar-logo{
    margin-left:0;
}

.navbar-logo img{
    display:block;
    height:120px;
    width:auto;
}

.nav-links a{
    color:#163f3b;
    font-weight:600;
}

.remember-me{
    display:flex;
    align-items:center;
    gap:8px;
}

.remember-me input{
    width:auto;
    margin:0;
}

.hero {
    padding: 120px 20px 100px;
    text-align: center;
    background: white;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-block;
    background: #f3f5f6;
    color: #1f5b4d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 10px 18px;
    border-radius: 999px;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 72px;
    line-height: 1.1;
    color: #163f3b;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero p {
    font-size: 24px;
    line-height: 1.7;
    color: #555;
    max-width: 700px;
    margin: 0 auto 50px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
    background: #d4af37;
    color: white;
    padding: 18px 36px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
}

.btn-secondary {
    background: #1f5b4d;
    color: white;
    padding: 18px 36px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
}


body {
    background: #f8f9fa;
}

.hero {
    background: white;
    padding: 120px 20px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #184b43;
}

.hero p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.35rem;
    line-height: 1.8;
    color: #555;
}

.card {
    background: white;
    border-radius: 16px;
    padding: 50px;
    margin: 40px auto;
    max-width: 1400px;
}

.register-wrapper{
    max-width:700px;
    margin:60px auto;
}

.register-card{
    background:white;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.register-header img{
    height:70px;
    background:transparent;
    display:block;
    margin:0 auto;
}



.register-body{
    padding:50px;
}

.register-body h1,
.register-body label{
    color:#000;
}

.register-body label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.register-body input,
.register-body select{
    width:100%;
    padding:14px;
    margin-bottom:18px;
    border:1px solid #ddd;
    border-radius:12px;
}

.login-link{
    text-align:center;
    margin-top:25px;
}
.hero {
    position: relative;
    min-height: 600px;

    background-image:
        linear-gradient(
            rgba(0,0,0,0.45),
            rgba(0,0,0,0.45)
        ),
        url("../images/corporate-gifting-hero.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    padding: 80px 20px;
}

.hero-content {
    max-width: 800px;
    color: white;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
.hero-content h1{
    color: #ffffff !important;
    text-shadow: 0 3px 12px rgba(0,0,0,0.6);
}

.hero-content p{
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.hero-tag{
    background: rgba(255,255,255,0.95);
    color: #0f4f46;
}

.hero{
    position: relative;
}

.hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-content{
    position: relative;
    z-index: 2;
}
/* =========================
   REGISTER PAGE
========================= */

.register-wrapper{
    max-width:950px;
    margin:60px auto;
    padding:0 20px;
}

.register-card{
    background:white;
    border-radius:24px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.register-body{
    padding:60px;
}

.register-body h1{
    text-align:center;
    font-size:48px;
    font-weight:700;
    color:#000;
    margin-bottom:15px;
}

.register-body h1::after{
    content:"";
    display:block;
    width:80px;
    height:4px;
    background:#d4af37;
    margin:20px auto 0;
    border-radius:999px;
}

.register-subtitle{
    text-align:center;
    color:#666;
    font-size:18px;
    margin-bottom:45px;
}

.register-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

.form-group{
    margin-bottom:0;
}

.form-group.full-width{
    grid-column:1 / -1;
}

.register-body label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#111;
}

.register-body input,
.register-body select{
    width:100%;
    padding:16px;
    border:2px solid #e6e6e6;
    border-radius:12px;
    font-size:16px;
    transition:all .2s ease;
    background:white;
}

.register-body input:focus,
.register-body select:focus{
    outline:none;
    border-color:#234f46;
    box-shadow:0 0 0 4px rgba(35,79,70,.08);
}

.register-submit{
    width:100%;
    margin-top:35px;
    padding:18px;
    border:none;
    border-radius:12px;
    background:#d4af37;
    color:white;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:.2s ease;
}

.register-submit:hover{
    transform:translateY(-1px);
    background:#c5a22d;
}

.login-link{
    text-align:center;
    margin-top:25px;
}

.login-link a{
    color:#234f46;
    font-weight:700;
}

@media(max-width:768px){

    .register-grid{
        grid-template-columns:1fr;
    }

    .register-body{
        padding:35px;
    }

    .register-body h1{
        font-size:36px;
    }
}

.dashboard-container{
    max-width:1200px;
    margin:40px auto;
    padding:0 24px;
}

.dashboard-hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
}

.dashboard-hero h1{
    font-size:42px;
    margin:0;
    color:#0b4f4b;
}

.dashboard-hero p{
    color:#666;
    margin-top:8px;
}

.dashboard-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-bottom:40px;
}

.stat-card{
    background:white;
    padding:30px;
    border-radius:16px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
}

.stat-card h3{
    font-size:36px;
    margin:0;
    color:#0b4f4b;
}

.campaign-card{
    background:white;
    border-radius:16px;
    padding:24px 30px;
    margin-bottom:16px;

    display:grid;
    grid-template-columns:3fr 1fr 2fr 1fr 1fr;

    align-items:center;
    gap:20px;

    box-shadow:0 8px 30px rgba(0,0,0,.08);
}

.campaign-col{
    display:flex;
    align-items:center;
}

.actions{
    justify-content:flex-end;
}





.status-badge{
    background:#f4f4f4;
    padding:8px 14px;
    border-radius:999px;
    font-size:14px;
}

.btn-primary{
    background:#cfa32b;
    color:white;
    padding:14px 24px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
}

.btn-secondary{
    background:#0b4f4b;
    color:white;
    padding:10px 18px;
    border-radius:8px;
    text-decoration:none;
}

.footer{
    margin-top:80px;
    padding:20px 40px;
    border-top:1px solid #e5e5e5;
    background:#ffffff;
    color:#666;
    font-size:14px;
    text-align:center;
}

.footer strong{
    color:#0b4f4b;
    font-weight:600;
}

.campaign-form-container{
    max-width:700px;
    margin:60px auto;
    padding:0 20px;
}

.campaign-form-card{
    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
}

.campaign-form-card h1{
    margin-bottom:10px;
    color:#0b4f4b;
}

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

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.form-group input{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
}
.campaign-container{
    max-width:1200px;
    margin:50px auto;
    padding:0 24px;
}

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

.campaign-header h1{
    font-size:48px;
    color:#0b4f4b;
    margin:0;
}

.campaign-subtitle{
    margin-top:8px;
    color:#666;
}

.campaign-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-bottom:40px;
}

.campaign-actions{
    display:flex;
    gap:16px;
    margin-bottom:40px;
}

.campaign-section{
    background:white;
    border-radius:20px;
    padding:30px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
}

.campaign-section h2{
    color:#0b4f4b;
    margin-bottom:20px;
}

.gift-row{
    display:flex;
    align-items:center;
    gap:20px;
    padding:20px 0;
    border-bottom:1px solid #eee;
}

.gift-row form{
    margin-left:auto;
}

.gift-row img{
    width:80px;
    height:80px;
    object-fit:cover;
    border-radius:12px;
}

.gift-row h4{
    margin:0 0 5px 0;
}

.empty-state{
    text-align:center;
    padding:60px 20px;
}

.empty-state h3{
    color:#0b4f4b;
    margin-bottom:10px;
}

.recipient-page {
    max-width: 1100px;
    margin: 40px auto;
}

.recipient-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.section {
    margin-bottom: 40px;
}

.section h2 {
    color: #004d59;
    margin-bottom: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.field {
    display: flex;
    flex-direction: column;
}

.field label {
    margin-bottom: 8px;
    font-weight: 600;
}

.field input,
.field select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.checkbox-row {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.btn-save {
    background: #d4a62b;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}
.campaign-value {
    margin-top: 6px;
    font-weight: 600;
    color: #0c5b66;
}
html,
body {
    height: 100%;
    margin: 0;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}
html,
body {
    height: 100%;
    margin: 0;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-content {
    flex: 1;
}
.footer {
    margin-top: auto;
    padding: 15px 20px;
    text-align: center;
    border-top: 1px solid #e5e5e5;
    background: #fff;
}




.btn-edit,
.btn-delete {
    background: #004d59;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all .2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-edit:hover,
.btn-delete:hover {
    background: #006778;
}




.dashboard-banner {
    width: 100%;
    height: 420px;
    background: url("/static/images/africa.JPG") center center/cover no-repeat;
    position: relative;
    margin-bottom: 40px;
}

.dashboard-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: white;
    padding: 20px;
}

.dashboard-banner-overlay h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.dashboard-banner-overlay p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}


.dashboard-container{
    width: 98%;
    max-width: none;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.report-table{
    width:100%;
    border-collapse:collapse;
}

.report-table th,
.report-table td{
    padding:12px 15px;
    text-align:left;
    border-bottom:1px solid #ddd;
    vertical-align:top;
}

.report-table td{
    white-space:normal;
    word-break:break-word;
}

.table-wrapper{
    width:100%;
    overflow-x:auto;
}

.flash-container {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}

.flash-message {
    min-width: 450px;
    padding: 18px 28px;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.flash-message.success {
    background: #004d59;
}

.flash-message.warning {
    background: #d4a62b;
}

.flash-message.error {
    background: #dc2626;
}

.campaign-title-row{
    display:flex;
    align-items:center;
    gap:20px;
}

.campaign-title-row h1{
    margin:0;
}

.campaign-year{
    font-size:22px;
    color:#666;
    font-weight:500;
}

.status-badge{
    margin-left:auto;
}

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

.campaign-title-row{
    display:flex;
    align-items:center;
    gap:20px;
}

.campaign-title-row h1{
    margin:0;
}

.campaign-year{
    font-size:24px;
    color:#666;
}

.back-button{
    display:inline-block;
    padding:10px 18px;
    background:#f5f5f5;
    color:#444;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.back-button:hover{
    background:#e9e9e9;
}

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

.back-btn {
    background:#004d59;
    color:white;
    text-decoration:none;
    padding:12px 22px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.back-btn:hover {
    background:#003640;
}

.btn-edit,
.btn-delete {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:80px;
    height:38px;
    border:none;
    border-radius:8px;
    font-weight:600;
    text-decoration:none;
    cursor:pointer;
    box-sizing:border-box;
}

.btn-edit {
    background:#004d59;
    color:white;
}

.btn-delete {
    background:#004d59;
    color:white;
}

.btn-edit:hover,
.btn-delete:hover {
    background:#003640;
}

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

.btn-edit {
    background:#004d59;
    color:white;
    padding:10px 18px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

.btn-edit:hover {
    background:#003640;
}

.actions {
    display: flex;
    gap: 10px;
}


.report-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.campaign-actions {
    display: flex;
    gap: 12px;
    margin: 25px 0 35px;
}

.btn-step {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;

    height: 44px;

    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

.btn-step:hover {
    transform: translateY(-1px);
}

.btn-step-1 {
    background: #005b5b;
}

.btn-step-2 {
    background: #c9a227;
}

.btn-step-3 {
    background: #2b6cb0;
}

.btn-step-4 {
    background: #6b46c1;
}

.btn-step-5 {
    background: #2f855a;
}

.campaign-summary {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
    max-width: 500px;
    margin-left: auto;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 15px;
}

.grand-total {
    font-size: 1.2rem;
    font-weight: 700;
    border-top: 1px solid #ddd;
    padding-top: 12px;
    margin-top: 12px;
}

.quote-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.quote-table th,
.quote-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.quote-table th {
    background: #f7f7f7;
}

.quote-summary {
    width: 350px;
    margin-left: auto;
    margin-top: 30px;
}

.quote-summary .summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.quote-summary .grand-total {
    border-top: 1px solid #ddd;
    padding-top: 10px;
    font-size: 1.2rem;
    font-weight: 700;
}

.report-actions{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}
.dashboard-container .action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 90px;
    height: 36px;

    white-space: nowrap;

    font-size: 13px;
    font-weight: 600;
}



.report-container{
    max-width:1200px;
    margin:0 auto;
}

.report-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:30px;
}

.header-left h1{
    margin-bottom:5px;
}

.header-left h2{
    margin:0;
    color:#0d4d4d;
}

.header-right{
    text-align:right;
}

.quote-table{
    width:100%;
    border-collapse:collapse;
}

.quote-table th{
    text-align:left;
    padding:12px;
    border-bottom:2px solid #ddd;
}

.quote-table td{
    padding:12px;
    border-bottom:1px solid #eee;
}

.number{
    text-align:right;
}

.quote-summary{
    width:320px;
    margin-left:auto;
    margin-top:20px;
}

.summary-table{
    width:100%;
}

.summary-table td{
    padding:6px 0;
}

.summary-table .amount{
    text-align:right;
    font-weight:600;
}

.grand-total td{
    border-top:2px solid #ccc;
    padding-top:12px;
    font-size:1.15rem;
    font-weight:700;
}
.report-container{
    max-width:1200px;
    margin:0 auto;
    padding:30px;
}

.quote-table{
    width:100%;
    border-collapse:collapse;
    table-layout:fixed;
}

.quote-table th,
.quote-table td{
    padding:10px;
    border-bottom:1px solid #ddd;
}

.quote-table th{
    background:#f5f5f5;
    text-align:left;
}

.quote-table th:nth-child(1),
.quote-table td:nth-child(1){
    width:60%;
}

.quote-table th:nth-child(2),
.quote-table td:nth-child(2){
    width:10%;
    text-align:right;
}

.quote-table th:nth-child(3),
.quote-table td:nth-child(3){
    width:15%;
    text-align:right;
}

.quote-table th:nth-child(4),
.quote-table td:nth-child(4){
    width:15%;
    text-align:right;
}
.quote-summary{
    width:300px;
    margin-left:auto;
    margin-top:20px;
}

.summary-row{
    display:flex;
    justify-content:space-between;
    padding:5px 0;
}

.grand-total{
    border-top:2px solid #ccc;
    margin-top:10px;
    padding-top:10px;
    font-size:18px;
    font-weight:bold;
}

.logo-upload-intro{
    margin-bottom:25px;
    color:#555;
    line-height:1.7;
}

.logo-requirements{
    background:#f8f9fa;
    border-left:4px solid #d4af37;
    padding:20px;
    margin-bottom:30px;
    border-radius:8px;
}

.logo-requirements h3{
    margin-bottom:10px;
    color:#0b4f4b;
}

.logo-requirements ul{
    margin:10px 0 15px 20px;
}

.logo-requirements li{
    margin-bottom:6px;
}

textarea{
    min-height:120px;
}

.campaign-list-header,
.campaign-card{
    display:grid;
    grid-template-columns:
        5fr     /* Campaign */
        1fr     /* Year */
        1.5fr   /* Edit */
        1.5fr   /* Total Value */
        1.25fr  /* Status */
        2.5fr;  /* Actions */

    align-items:center;
    gap:20px;
}

.campaign-list-header{
    padding:0 30px 12px;
    font-weight:700;
    color:#0b4f4b;
}

.campaign-list-header div:nth-child(5),
.campaign-card > div:nth-child(5){
    justify-self:center;
    text-align:center;
}

.campaign-list-header div:nth-child(6),
.campaign-card > div:nth-child(6){
    text-align:right;
}

.action-btn{
    min-width:120px;
    height:36px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:0 12px;

    white-space:nowrap;

    background:#005a63;
    color:white;
    border-radius:6px;

    font-size:13px;
    font-weight:600;
}
.campaign-summary-card{
    background:#fff;
    border-radius:16px;
    padding:30px;
    margin-top:30px;
    box-shadow:0 4px 12px rgba(0,0,0,.06);
}

.summary-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
    margin-top:20px;
}

.summary-item{
    text-align:center;
}

.summary-label{
    display:block;
    color:#777;
    font-size:14px;
    margin-bottom:8px;
}

.summary-value{
    font-size:22px;
    font-weight:700;
    color:#004d5a;
}

.campaign-title-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.back-btn{
    background:#f5f5f5;
    color:#004d5a;
    padding:10px 18px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    border:1px solid #ddd;
    transition:all .2s ease;
}

.back-btn:hover{
    background:#004d5a;
    color:white;
}
.overview-hero{
    margin-top:30px;
    min-height:420px;
    border-radius:20px;
    overflow:hidden;

    background:
        linear-gradient(
            135deg,
            #004d59 0%,
            #0b4f4b 35%,
            #1d6f68 70%,
            #d4af37 100%
        );

    display:flex;
    align-items:center;
    position:relative;

    box-shadow:0 12px 35px rgba(0,0,0,.12);
}

.overview-hero::before{
    content:"";
    position:absolute;
    inset:0;

    background:
        radial-gradient(
            circle at top right,
            rgba(255,255,255,.15),
            transparent 40%
        );

    pointer-events:none;
}

.overview-hero-overlay{
    position:relative;
    z-index:2;
    padding:70px;
    max-width:700px;
    color:white;
}

.overview-hero h2{
    font-size:56px;
    font-weight:700;
    margin-bottom:10px;
    color:white;
}

.overview-hero h3{
    color:white;
    margin-bottom:15px;
}

.overview-hero h3:nth-of-type(1){
    font-size:22px;
    opacity:.9;
}

.overview-hero h3:nth-of-type(2){
    font-size:20px;
    line-height:1.6;
    font-weight:500;
}

/* ==========================================
   CAMPAIGN GIFTS PAGE HEADER ONLY
========================================== */

.gift-page-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:30px;
}

.gift-page-title h1{
    margin:0;
    color:#0b4f4b;
}

.gift-page-year{
    margin-top:8px;
    font-size:24px;
    color:#666;
}

.gift-page-actions{
    display:flex;
    gap:12px;
}

.gift-page-btn{
    width:180px;
    height:44px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    box-sizing:border-box;
}

.gift-page-btn-back{
    background:#f5f5f5;
    color:#004d5a;
    border:1px solid #ddd;
}

.gift-page-btn-back:hover{
    background:#e9e9e9;
}

.gift-page-btn-add{
    background:#c9a227;
    color:white;
}

.gift-page-btn-add:hover{
    background:#b8921f;
}

.form-actions{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:20px;
}

.form-actions .btn-primary{
    min-width:180px;
}

.form-actions .gift-page-btn-back{
    min-width:180px;
    text-align:center;
}

.login-page{
    min-height:calc(100vh - 80px);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px 20px;
    background:#f5f6f7;
}

.login-card{
    width:100%;
    max-width:620px;
    background:white;
    border-radius:16px;
    padding:50px 45px;
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}

.login-card h1{
    text-align:center;
    font-size:34px;
    margin-bottom:16px;
    color:#000;
}

.login-divider{
    width:55px;
    height:3px;
    background:#d9ad29;
    margin:0 auto 18px;
}

.login-subtitle{
    text-align:center;
    color:#31514f;
    font-size:14px;
    margin-bottom:38px;
}

.login-card form{
    display:flex;
    flex-direction:column;
}

.login-card label{
    font-size:13px;
    font-weight:600;
    margin-bottom:8px;
    color:#000;
}

.login-card input{
    width:100%;
    height:42px;
    border:1px solid #ccd5df;
    border-radius:7px;
    padding:0 12px;
    margin-bottom:28px;
    background:#eaf2ff;
}

.login-btn{
    width:100%;
    height:46px;
    border:none;
    border-radius:8px;
    margin-top:20px;
}

.report-actions{
    display:flex;
    justify-content:flex-end;
    gap:12px;
    margin-bottom:24px;
}

.delivery-labels{
    display:none;
}

.delivery-label{
    width:100mm;
    min-height:70mm;
    padding:10mm;
    border:1px solid #000;
    margin-bottom:10mm;
    page-break-inside:avoid;
}

.delivery-label h2{
    font-size:18px;
    margin-bottom:10px;
}

.delivery-label p{
    font-size:14px;
    margin:4px 0;
}

@media print{

    body{
        background:white;
    }

    header,
    nav,
    .report-actions,
    .delivery-screen-table,
    .report-container > h1,
    .report-container > p{
        display:none !important;
    }

    .report-container{
        box-shadow:none;
        padding:0;
        margin:0;
        width:100%;
    }

    .delivery-labels{
        display:block;
    }

    .delivery-label{
        page-break-after:always;
    }
}
.fulfilment-actions{
    display:flex;
    align-items:center;
    gap:12px;
}

.fulfilment-actions form{
    margin:0;
}

.fulfilment-actions .gift-page-btn{
    min-width:150px;
    height:38px;

    display:flex;
    align-items:center;
    justify-content:center;

    white-space:nowrap;
}

.fulfilment-table{
    width:100%;
}

.fulfilment-table th,
.fulfilment-table td{
    vertical-align:middle;
}

.fulfilment-table th:nth-child(1){
    width:18%;
}

.fulfilment-table th:nth-child(2){
    width:28%;
}

.fulfilment-table th:nth-child(3){
    width:16%;
}

.fulfilment-table th:nth-child(4){
    width:12%;
}

.fulfilment-table th:nth-child(5){
    width:26%;
}

.actions-header{
    text-align:center;
}

.fulfilment-actions{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:12px;
}

.fulfilment-actions form{
    margin:0;
}

.fulfilment-btn{
    width:155px;
    height:36px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:0 12px;
    border:1px solid #111;
    border-radius:6px;

    background:white;
    color:#003f3b;

    font-size:13px;
    font-weight:600;
    text-decoration:none;
    white-space:nowrap;

    cursor:pointer;
}

.fulfilment-btn:hover{
    background:#f4f4f4;
}

.report-actions{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:12px;
    margin-bottom:24px;
}

.fulfilment-table{
    width:100%;
}

.fulfilment-table th:nth-child(1){
    width:18%;
}

.fulfilment-table th:nth-child(2){
    width:28%;
}

.fulfilment-table th:nth-child(3){
    width:16%;
}

.fulfilment-table th:nth-child(4){
    width:12%;
}

.fulfilment-table th:nth-child(5){
    width:26%;
}

.actions-header{
    text-align:center;
}

.fulfilment-actions{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:12px;
}

.fulfilment-actions form{
    margin:0;
}

.fulfilment-btn{
    width:155px;
    height:36px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:0 12px;
    border:1px solid #111;
    border-radius:6px;

    background:white;
    color:#003f3b;

    font-size:13px;
    font-weight:600;
    text-decoration:none;
    white-space:nowrap;

    cursor:pointer;
}

.fulfilment-btn:hover{
    background:#f4f4f4;
}
.table-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.table-actions form {
    margin: 0;
}

.gift-page-btn-danger {
    background: #b00020;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.user-page-container{
    max-width:1100px;
    margin:0 auto;
    padding:60px 30px;
}

.user-page-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:30px;
}

.user-page-header h1{
    margin:0 0 8px;
    color:#004c4c;
    font-size:30px;
}

.user-page-header p{
    margin:0;
    color:#333;
}

.user-page-actions{
    display:flex;
    gap:16px;
    align-items:center;
}

.user-table-card,
.user-form-card{
    background:#fff;
    border-radius:14px;
    padding:30px;
    box-shadow:0 8px 24px rgba(0,0,0,0.08);
}

.user-form-card{
    max-width:650px;
}

.user-table{
    width:100%;
    border-collapse:collapse;
}

.user-table th{
    text-align:left;
    padding:14px 12px;
    border-bottom:1px solid #ddd;
    color:#004c4c;
    font-weight:700;
}

.user-table td{
    padding:16px 12px;
    border-bottom:1px solid #eee;
}

.user-actions{
    display:flex;
    align-items:center;
    gap:16px;
}

.user-actions form{
    margin:0;
}

.small-link-btn{
    color:#004c4c;
    font-weight:700;
    text-decoration:none;
}

.small-danger-btn{
    background:#b00020;
    color:#fff;
    border:none;
    border-radius:7px;
    padding:9px 28px;
    font-weight:700;
    cursor:pointer;
}

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

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:700;
    color:#004c4c;
}

.form-group input,
.form-group select{
    width:100%;
    height:44px;
    border:1px solid #d7d7d7;
    border-radius:8px;
    padding:0 12px;
    font-size:14px;
    box-sizing:border-box;
}

.form-actions{
    margin-top:28px;
}

.checkbox-row {
    margin-bottom: 20px;
    font-weight: 600;
    color: #004f5f;
}

.checkbox-row input {
    margin-right: 8px;

.checkbox-row {
    margin-bottom: 20px;
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #003d47;
    cursor: pointer;
}

.checkbox-label input {
    margin: 0;
}
.checkbox-row {
    margin-bottom: 8px;
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #003d47;
    cursor: pointer;
    white-space: nowrap;
}

.checkbox-label input {
    margin: 0;
}

.delivery-helper-text {
    margin: 0 0 20px 0;
    color: #003d47;
    font-size: 15px;
}