/* A Rose for Marriage - Custom Styles */
/* Based on reference design with pink/red and green gradient colors */

/* Logo Styling - Matching Reference Image */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
:root{
    --gold: #D4AF37;
    --primary: #000000;
    --dark-text: #000000;
    --bg-primary: #ffffff;
  --shadow: rgba(212, 175, 55, 0.2) 0px 10px 15px -3px, rgba(212, 175, 55, 0.1) 0px 4px 6px 2px;

    --light-text:#4b5563;
  }

.logo img {
    margin-right: 15px;
    flex-shrink: 0;
}
   /* Import same CSS variables and styling from new/index.html */
   :root {
    --primary: #D4AF37;
    --primary-50: #FEF2F2;
    --primary-200: #FED7D7;
    --accent: #D4AF37;
    --dark-text: #000000;
    --bg-black: #000000;
    --bg-gold: #D4AF37;
    --bg-primary: #ffffff;
    --bg-accent: #FFFBEB;
    --gradient-primary: linear-gradient(135deg, #D4AF37 0%, #F59E0B 100%);
}



/* Registration Container */
.registration-container {
    min-height: 100vh;
    padding: 20px;
}

/* Header */
.registration-header {
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
}

.back-link {
    color: var(--dark-text);
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--primary);
}

/* Registration Title */
.registration-title {
    text-align: center;
    margin-bottom: 20px;
}


.title-text {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-text);
    vertical-align: middle;
}

.title-highlight {
    color: var(--dark-text);
}

/* Progress Indicator */
.progress-indicator {
    margin-bottom: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.progress-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #E9ECEF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.step.active {
    background: var(--bg-black);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.step-number {
    font-size: 16px;
    font-weight: 600;
}

.progress-bar {
    height: 4px;
    background: #E9ECEF;
    border-radius: 2px;
    position: relative;
    margin: 0 20px;
}

.progress-fill {
    height: 100%;
    background: #D4AF37;
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Registration Content */
.registration-content {
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 15px 3px rgba(212, 175, 55, 0.4), 0 4px 6px 2px rgba(212, 175, 55, 0.1);
    margin: 0 auto 30px;
    max-width: 1200px;
    width: 100%;
    background: white;
}

/* Step Content */
.step-content {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.step-content.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-header {
    text-align: center;
    margin-bottom: 40px;
}

.step-label {
    display: inline-block;
    background: #d4af377d;
    color: var(--dark-text);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid var(--primary-200);
}

.step-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.step-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    background: var(--bg-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary-200);
}

.step-title span {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-text);
}

.step-description {
    color: #6C757D;
    font-size: 16px;
    margin: 10px 0 0;
}

/* Form Fields */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 8px;
    font-size: 14px;
    display: block;
}

.required {
    color: var(--primary);
    margin-left: 3px;
}

.form-control {
    border: 1px solid #E9ECEF;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(212, 175, 55, 0.2), 0 4px 6px 2px rgba(212, 175, 55, 0.1);
    padding: 12px 16px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 10px 15px 3px rgba(212, 175, 55, 0.4), 0 4px 6px 2px rgba(212, 175, 55, 0.1);
    background: white;
}

/* Navigation Buttons */
.registration-navigation {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.btn-previous,
.btn-next {
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-previous {
    background: transparent;
    color: var(--dark-text);
    border: 1px solid var(--dark-text);
}

.btn-previous:hover {
    border: 1px solid var(--bg-gold);
    color: var(--bg-gold);
    transform: translateY(-2px);
}

.btn-next {
    background: var(--bg-black);
    color: white;
}

.btn-next:hover {
    background: var(--bg-gold);
    color: var(--dark-text);
    transform: translateY(-2px);
}

/* Radio Group */
.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.form-check-input {
    width: 18px;
    height: 18px;
    border: 2px solid var(--dark-text);
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Availability Grid */
.availability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.week-block {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
}

.week-block h6 {
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
}

.day-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.holiday-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.availability-summary {
    background: var(--primary-50);
    border: 1px solid var(--primary-200);
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.availability-summary .summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

/* Signature Pad */
.signature-pad-container {
    border: 2px solid #ddd;
    border-radius: 8px;
    background-color: #ffffff;
    padding: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: inline-block;
    width: 100%;
    max-width: 600px;
}

#signatureCanvas {
    border: 1px dashed #999;
    border-radius: 4px;
    cursor: crosshair;
    touch-action: none;
    background-color: #fafafa;
    display: block;
    width: 100%;
    height: auto;
    max-width: 600px;
}

.signature-actions {
    margin-top: 10px;
}

@media (max-width: 768px) {
    .registration-content {
        padding: 20px;
    }
    
    .availability-grid {
        grid-template-columns: 1fr;
    }
}
.logo-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-main-text {
    display: flex;
    align-items: baseline;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 2px;
}

.logo-part1 {
    color: #E94E77;
    margin-right: 4px;
}

.logo-part2 {
    color: #4CAF50;
}

.logo-sub-text {
    color: #6C757D;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    margin-top: 2px;
}

/* Logo white version for dark backgrounds */
.logo-white .logo-main-text .logo-part1 {
    color: #E94E77;
}

.logo-white .logo-main-text .logo-part2 {
    color: #4CAF50;
}

.logo-white .logo-sub-text {
    color: #ADB5BD;
}

/* Small logo version */
.logo-small {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gradient Background Classes */
.gradient-bg-1 {
    background: var(--gold);
    color: var(--dark-text);
}

.gradient-bg-2 {
    background:var(--primary);
    color: var(--bg-primary);
}

.gradient-bg-3 {
    background: var(--gold);
    color: white;
}

.gradient-bg-4 {
    background:var(--primary);
    color: white;
}

.gradient-bg-5 {
    background: transparent;
    box-shadow: rgba(212, 175, 55, 0.4) 0px 10px 15px 3px, rgba(212, 175, 55, 0.1) 0px 4px 6px 2px;
    color: white;
}
.gradient-bg-5:hover{
    box-shadow: rgba(212, 175, 55, 0.4) 0px 10px 15px 3px, rgba(212, 175, 55, 0.1) 0px 4px 6px 2px !important;
}
.gradient-bg-6 {
    background: linear-gradient(135deg, #66BB6A 0%, #4CAF50 100%);
    color: white;
}

.gradient-bg-7 {
    background: linear-gradient(135deg, #F48FB1 0%, #E94E77 100%);
    color: white;
}

.gradient-bg-8 {
    background: linear-gradient(135deg, #81C784 0%, #4CAF50 100%);
    color: white;
}

/* Dashboard Cards Styling */
.dash-count {
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.dash-count:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.dash-counts h4 {
    color: var(--dark-text);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}
.light-dash-counts h4{
    color: #000;

}
.light-dash-counts h5{
    color: #000 !important;

}
.light-growth-up{
    color: #000 !important;
}
.dash-counts h5 {
    color: var(--dark-text);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.growth-up {
    color: var(--dark-text);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dash-imgs {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.3;
}

.dash-imgs i {
    font-size: 40px;
    color: white;
}

/* Page Header Styling */
.page-title  {
    background: #000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700 !important;
    font-size: 30px !important;
}

/* Chart Styling */
.card {
    border-radius: 15px;
    border: none;
    box-shadow: rgba(212, 175, 55, 0.2) 0px 10px 15px -3px, rgba(212, 175, 55, 0.1) 0px 4px 6px 2px;
    margin-bottom: 20px;
}

.card-header {
    background: linear-gradient(135deg, #FFF9F9 0%, #F8F9FA 100%);
    border-bottom: 1px solid #E9ECEF;
    border-radius: 15px 15px 0 0 !important;
    padding: 20px;
}

.card-title {
    color: var(--primary);
    font-weight: 600;
    font-size: 18px;
}

/* Activity Feed Styling */
.activity-feed {
    max-height: 400px;
    overflow-y: auto;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #F1F3F4;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.49);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}
.activity-avatar svg{
    color: var(--dark-text);
}

.activity-avatar i {
    color: white;
    font-size: 16px;
}

.activity-content h6 {
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 14px;
}

.activity-content p {
    color: var(--light-text);
    margin-bottom: 5px;
    font-size: 13px;
}

.activity-content .time {
    color: var(--light-text);
    font-size: 12px;
}

/* Chart Legend Styling */
.registration-line {
    display: inline-block;
    width: 12px;
    height: 3px;
    background: linear-gradient(135deg, #E94E77 0%, #F06292 100%);
    margin-right: 8px;
    border-radius: 2px;
}

.attendance-line {
    display: inline-block;
    width: 12px;
    height: 3px;
    background: linear-gradient(135deg, #4CAF50 0%, #2E8B57 100%);
    margin-right: 8px;
    border-radius: 2px;
}

/* Button Styling */
.btn-primary {
    background: var(--accent);
    color: var(--dark-text) !important;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 78, 119, 0.3);
}


.sidebar-menu ul li a {
    color: #495057;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 2px 8px;
}



/* Header Styling */
.header {
    /* background: white; */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .dash-counts h5 {
        font-size: 24px;
    }
    
    .dash-imgs i {
        font-size: 30px;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    /* Logo responsive adjustments */
    .logo-main-text {
        font-size: 16px;
    }
    
    .logo-sub-text {
        font-size: 10px;
    }
    
    .logo img {
        width: 40px !important;
        height: 40px !important;
        margin-right: 10px;
    }
}

@media (max-width: 480px) {
    .logo-text-container {
        display: none;
    }
    
    .logo img {
        margin-right: 0;
    }
}

/* Custom Scrollbar */
.activity-feed::-webkit-scrollbar {
    width: 6px;
}

.activity-feed::-webkit-scrollbar-track {
    background: #F1F3F4;
    border-radius: 3px;
}

.activity-feed::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #E94E77 0%, #4CAF50 100%);
    border-radius: 3px;
}

.activity-feed::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #D81B60 0%, #388E3C 100%);
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dash-count {
    animation: fadeInUp 0.6s ease forwards;
}

.dash-count:nth-child(1) { animation-delay: 0.1s; }
.dash-count:nth-child(2) { animation-delay: 0.2s; }
.dash-count:nth-child(3) { animation-delay: 0.3s; }
.dash-count:nth-child(4) { animation-delay: 0.4s; }
/* Event Management Custom Styles */
.event-header-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-create-event {
    background:var(--gold);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    color:var(--dark-text);
    transition: all 0.3s ease;
}

.btn-create-event:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    color: var(--bg-primary);
}

.btn-create-event i {
    margin-right: 8px;
}

.event-filters {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-btn {
    border: none;
    background: rgba(212, 175, 55, 0.49);
    color: var(--dark-text);
    border-radius: 8px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background:var(--primary);
    color: var(--bg-primary);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
   
}

/* Event Table Styling */
.event-table-card {
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: white;
}

.table thead th {
    background: linear-gradient(135deg, #FFF9F9 0%, #F8F9FA 100%);
    color: #2C3E50;
    font-weight: 600;
    border: none;
    padding: 18px 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #F1F3F4;
}

.table tbody tr:hover {
    background: linear-gradient(135deg, rgba(233, 78, 119, 0.05) 0%, rgba(76, 175, 80, 0.05) 100%);
    transform: scale(1.01);
}

.table tbody td {
    padding: 20px 15px;
    vertical-align: middle;
    color: #495057;
}

/* Event Status Badge */
.status-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-upcoming {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    color: white;
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

.status-ongoing {
    background: linear-gradient(135deg, #2196F3 0%, #42A5F5 100%);
    color: white;
    box-shadow: 0 4px 10px rgba(33, 150, 243, 0.3);
}

.status-completed {
    background: linear-gradient(135deg, #9E9E9E 0%, #BDBDBD 100%);
    color: white;
    box-shadow: 0 4px 10px rgba(158, 158, 158, 0.3);
}

.status-cancelled {
    background: linear-gradient(135deg, #F44336 0%, #EF5350 100%);
    color: white;
    box-shadow: 0 4px 10px rgba(244, 67, 54, 0.3);
}

/* Event Action Buttons */
.event-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.action-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.action-btn-view {
    background: linear-gradient(135deg, #2196F3 0%, #42A5F5 100%);
    color: white;
}

.action-btn-edit {
    background: linear-gradient(135deg, #FF9800 0%, #FFB74D 100%);
    color: white;
}

.action-btn-delete {
    background: linear-gradient(135deg, #F44336 0%, #EF5350 100%);
    color: white;
}

.action-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Event Location Badge */
.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #6C757D;
    font-size: 13px;
}

.location-badge i {
    color: #E94E77;
}

/* Event Date Badge */
.date-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #6C757D;
    font-size: 13px;
    font-weight: 500;
}

.date-badge i {
    color: #4CAF50;
}

/* Attendee Count */
.attendee-count {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.attendee-number {
    font-size: 20px;
    font-weight: 700;
    background: var(--gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.attendee-label {
    font-size: 11px;
    color: #6C757D;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Modal Styling */
.modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
}

.modal-header {
    color: white;
    padding: 25px 30px;
    border: none;
}

.modal-header .modal-title {
    font-weight: 700;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-header .btn-close {
    /* filter: brightness(0) invert(1); */
    opacity: 0.8;
}

.modal-body {
    padding: 30px;
}

.modal-footer {
    padding: 0 30px 20px 30px;
    border-top: 1px solid #F1F3F4;
}

/* Form Styling */
.form-label {
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-label .required {
    color: #E94E77;
    margin-left: 3px;
}

.form-control, .form-select {
    border: 1px solid #E9ECEF;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(233, 78, 119, 0.15);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Date Selection Counter */
.date-counter-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.date-counter {
    display: flex;
    align-items: center;
    border: 2px solid #E9ECEF;
    border-radius: 10px;
    overflow: hidden;
}

.date-counter button {
    width: 42px;
    height: 42px;
    border: none;
    background: linear-gradient(135deg, #E94E77 0%, #F06292 100%);
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.date-counter button:hover {
    background: linear-gradient(135deg, #D81B60 0%, #E94E77 100%);
}

.date-counter input {
    width: 60px;
    height: 42px;
    border: none;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #2C3E50;
}

/* Submit Button */
.btn-submit-event {
    background: var(--gold);
    border: none;
    border-radius: 50px;
    padding: 12px 40px;
    font-weight: 600;
    color: var(--dark-text);
    transition: all 0.3s ease;
   
}

.btn-submit-event:hover {
    transform: translateY(-2px);
    background: var(--primary);
    box-shadow:var(--shadow);
    color: white;
}

.btn-cancel {
    border: 2px solid #E9ECEF;
    background: white;
    color: #6C757D;
    border-radius: 50px;
    padding: 12px 40px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    background: #F8F9FA;
    color: #000;
    border-color: #DEE2E6;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state-icon {
    font-size: 64px;
    background: linear-gradient(135deg, #E94E77 0%, #4CAF50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.empty-state-title {
    font-size: 24px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 10px;
}

.empty-state-text {
    color: #6C757D;
    font-size: 16px;
}

/* Event Stats Mini Cards */
.event-mini-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.mini-stat-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}



.mini-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.mini-stat-icon.icon-total {
    background: linear-gradient(135deg, #E94E77 0%, #F06292 100%);
    color: white;
}

.mini-stat-icon.icon-upcoming {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    color: white;
}

.mini-stat-icon.icon-ongoing {
    background: linear-gradient(135deg, #2196F3 0%, #42A5F5 100%);
    color: white;
}

.mini-stat-icon.icon-completed {
    background: linear-gradient(135deg, #9E9E9E 0%, #BDBDBD 100%);
    color: white;
}

.mini-stat-content h6 {
    margin: 0;
    font-size: 12px;
    color: #6C757D;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mini-stat-content h3 {
    margin: 5px 0 0 0;
    font-size: 28px;
    font-weight: 700;
    color: #2C3E50;
}

/* Responsive Design */
@media (max-width: 768px) {
    .event-header-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .event-filters {
        justify-content: center;
    }

    .table {
        font-size: 13px;
    }

    .action-btn {
        width: 32px;
        height: 32px;
    }
}
.register-container {
    min-height: 100vh;
    padding: 40px 20px;
}
.register-card {
    max-width: 700px;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow:rgba(212, 175, 55, 0.4) 0px 10px 15px 3px, rgba(212, 175, 55, 0.1) 0px 4px 6px 2px;
    overflow: hidden;
}
.register-header {
    color: #000;
    padding: 30px 30px 0 30px;
    text-align: center;
}
.register-header h3 {
    margin: 0;
    font-size: 23px;
    font-weight: 600;
}
.register-body {
    padding: 40px;
}
.btn-register {
    background: var(--gold);
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-text);
    border-radius: 50px;
    width: 100%;
    margin-top: 20px;
}
.btn-register:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);;
}

/* Sign In Page Styles */
.input-group-text {
    background-color: #f8f9fa;
    border-right: none;
}

.input-group .form-control {
    border-left: none;
}

.input-group .form-control:focus {
    border-left: none;
    box-shadow: none;
}

#togglePassword {
    border-left: none;
}

#togglePassword:hover {
    background-color: #f8f9fa;
}
.event-img {
    height: 300px;              /* fixed height for consistent layout */
    object-fit: cover;          /* ensures image keeps proportions and crops nicely */
    object-position: center;    /* center the image nicely */
  }

  /* On smaller screens, reduce height for better fit */
  @media (max-width: 768px) {
    .event-img {
      height: 300px;
    }
  }


  /* Optional: add smooth transitions */
  .carousel-item {
    transition: transform 1s ease, opacity 1s ease;
  }
  .slider-section{
    box-shadow: rgba(212, 175, 55, 0.2) 0px 10px 15px -3px, rgba(212, 175, 55, 0.1) 0px 4px 6px 2px;
  }