body {
   /* background: #f4f6f9; */
    background: linear-gradient(to bottom right, #eef2f7, #e3ecf5);
    font-family: 'Segoe UI', sans-serif;
}
/* Header */
.header {
    text-align: center;
    padding: 30px 15px;
}

.header h1 {
    font-weight: 700;
    color: #0f172a;
}

.header p {
    /* color: #64748b; */
    color: #0f172a;
    margin-top: 5px;
}

/* Chat button */
.chat-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    /* background: linear-gradient(135deg, #25d366, #1ebe5d); */
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    /* box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3); */
    transition: 0.3s;
}

.chat-btn:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4); */
}

/* Event cards */
.event-container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

.event-card {
    background: white;
    padding: 18px;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.event-title {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
}

.event-desc {
    color: #080808;
    margin: 8px 0;
}

.event-date {
    font-size: 12px;
    color: black;
}


.event-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

/* Hover effect */
.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

/* Header layout */
.event-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Icon */
.event-icon {
    width: 45px;
    height: 45px;
    background: #e0f2fe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Title */
.event-title {
    font-size: 17px;
    font-weight: 600;
    color: #1d212b;
}

/* Date */
.event-date {
    font-size: 12px;
    /* color: #13161a; */
    color: #0f172a;
}

/* Description */
.event-desc {
    margin-top: 12px;
    font-size: 14px;
    /* color: #1e2227; */
    color: #0f172a;
    line-height: 1.5;
}

.no-events-box {
    text-align: center;
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    max-width: 500px;
    margin: 40px auto;
}

.no-events-box .icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.no-events-box h5 {
    margin: 10px 0;
    color: #0f172a;
    font-weight: 600;
}

.no-events-box p {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 15px;
}

/* CTA button */
.chat-link {
    display: inline-block;
    padding: 10px 18px;
    background: #25d366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    transition: 0.3s;
}

.chat-link:hover {
    background: #1ebe5d;
}

.event-box {
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
}

.read-more-btn {
    background: #0d6efd;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 15px;
    cursor: pointer;
    margin-top: 5px;
}

/* Footer */
.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Type badge */
.event-type {
    background: #e0f2fe;
    color: #0369a1;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    color: #233663;
    font-weight: 500;
}

/* Event date */
.event-date {
    font-size: 13px;
    color: #64748b;
}

/* Empty state */
.no-events-box {
    text-align: center;
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.pagination-box {
    text-align: center;
    margin-top: 25px;
}

.pagination-box a {
    display: inline-block;
    padding: 10px 16px;
    background: #25d366;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.3s;
}

.pagination-box a:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

.filter-box {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-box input,
.filter-box select {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.filter-box button {
    background: #25d366;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
}

#full-text {
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #0d6efd !important;
    border-color: #0d6efd !important;
    color: #fff !important;
    font-weight: 600 !important;
}
.btn-primary:hover{ transform: translateY(-2px);}