.gi-dashboard-wrapper {
    margin-bottom: 30px;
}
.gi-editor input {
   text-align:center;
}
.gi-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gi-stat-card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.gi-stat-card:hover {
    transform: translateY(-5px);
}

.gi-stat-card.highlight {
    border-right: 5px solid #d4a373; /* Resort Brand Color */
}

.gi-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-left: 20px;
}

.gi-stat-info h3 {
    margin: 0;
    font-size: 24px;
    color: #1a1a1a;
}

.gi-stat-info p {
    margin: 5px 0 0;
    color: #888;
    font-size: 14px;
}

.gi-stat-info small {
    font-size: 14px;
    font-weight: normal;
}


/* Container for the live preview */
#gi-preview-container {
    margin-top: 30px;
    background: #f9f9f9;
    padding: 20px;
    border: 2px dashed #ccc;
}

/* THE DESIGN AREA - Edit this to change PDF look */
#gi-pdf-content {
    background: white;
    width: 210mm; /* A4 Width */
    min-height: 297mm;
    margin: 0 auto; 
}


.pdf-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 3px solid #fff;
    width:100%;
}

.pdf-header h1 {
    color: #fff;
    font-size: 20px;
    margin: 0;
    font-weight:700;
}

.brand-color { color: #fff; font-weight: bold; }


/* Arabic Layout Support */
#gi-pdf-content {
    padding: 5mm;
    background: #c05c38;
    color: #fff;
}

.pdf-header-branded {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid #d4a373; /* Gold/Earth tone from document */
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.pdf-header-branded .logo-text h1 {
    color: #d4a373;
    font-size: 32px;
    margin: 0;
}

.pdf-meta-table {
    width: 100%;
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.pdf-meta-table td {
    padding: 8px;
    background: #fafafa;
}

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

.pdf-table th {
    background: #333;
    color: #fff;
    padding: 5px;
    text-align: center;
    font-size:12px;
}
.pdf-table td {
    border: 1px solid #333333;
    padding: 10px;
    vertical-align: middle;
    text-align: center;
    background: #fffcf9;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    direction: ltr;
}
#gi-items-table th {
    background: #c05c38;
    color: white;
}

/* Force Quill content to show correctly in the PDF */
.item-desc-html {
    white-space: normal;
    word-wrap: break-word;
}
:root {
    --glamp-gold: #c05c38;
    --glamp-dark: #1a1a1a;
    --glamp-bg: #f8f9fa;
    --glass: rgba(255, 255, 255, 0.9);
}



/* Glassmorphism Header */
.gi-glass-header {
    background: linear-gradient(135deg, var(--glamp-dark) 0%, #444 100%);
    padding: 60px 40px;
    border-radius: 20px;
    color: white;
    text-align: center;
    margin-bottom: -50px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Step Wizard */
.gi-step-wizard {
    display: flex;
    justify-content: space-around;
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    margin: 0 40px 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.gi-step-wizard .step.active {
    color: var(--glamp-gold);
    font-weight: bold;
    border-bottom: 2px solid var(--glamp-gold);
}

/* Form Styling */
.gi-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

/* Custom Table Design */
.gi-editor table {
    border-radius: 10px;
    overflow: hidden;
    border: none !important;
}


.gi-item-row {
    transition: transform 0.2s;
}

.gi-item-row:hover {
    background: #fffcf9 !important;
}

.gi-frontend-list-wrapper {

    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.gi-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.gi-btn-add {
    background: #d4a373;
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.gi-btn-add:hover { background: #1a1a1a; }



.gi-modern-table thead th {
    padding: 15px;
    color: #888;
    font-weight: 500;
    text-align: right;
}

.gi-modern-table tbody tr {
    background: #fafafa;
    transition: 0.3s;
}

.gi-modern-table tbody tr:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.gi-modern-table td {
    padding: 20px 15px;
}

.gi-col-num { font-weight: bold; color: #d4a373; }
.gi-col-total { font-weight: bold; }

.gi-action-btn {
    padding: 5px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 13px;
    margin-left: 5px;
    cursor: pointer;
    border: none;
}

.gi-action-btn.edit { }
.gi-action-btn.delete { background: #c6001e; }