/* ===============================
   THANKS SECTION & FLOATING BACKGROUND
=============================== */

.thanks-section {
    margin: 120px 0 180px 0;
    text-align: center;
    padding: 20px;
    animation: fadeIn 2s ease-out forwards;
    position: relative;
    z-index: 1;
}

.thanks-section h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    animation: bounceIn 1s ease-out;
}

.thanks-section p {
    font-size: 1.2rem;
    animation: fadeIn 2.5s ease-out;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    60% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

/* Floating shapes background */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.circle {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 10s infinite ease-in-out;
}

.circle:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.circle:nth-child(2) {
    top: 30%;
    left: 70%;
    animation-delay: 2s;
}

.circle:nth-child(3) {
    top: 60%;
    left: 40%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .thanks-section h1 {
        font-size: 1.8rem;
    }

    .thanks-section p {
        font-size: 1rem;
    }
}

/* ===============================
   DASHBOARD & EVENT TABLE STYLES
=============================== */

.dashboard-cohost-container {
    position: relative;
    z-index: 2;
    padding: 20px;
}

/* Host section title */
.host-name {
    text-align: center;
    font-size: 1.8rem;
    margin-top: 40px;
    color: #0a6455;
}

/* Table container */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-top: 30px;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Table design */
.event-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    font-size: 14px;
}

.event-table__thead {
    background-color: #e59d2f;
    color: #fff;
}

.event-table th,
.event-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-table th {
    font-weight: 600;
    text-transform: capitalize;
}

/* Row stripes */
.event-table tr:nth-child(even) {
    background: #fafafa;
}

/* Hover effect */
.event-table tr:hover {
    background-color: #f3f3f3;
}

/* Table buttons */
.event-table a.btn-secondary {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 6px;
    text-decoration: none;
    background-color: #e59d2f;
    color: white;
    font-size: 13px;
    transition: 0.25s ease;
}

.event-table a.btn-secondary:hover {
    background-color: #c8841c;
}

/* Responsive */
@media (max-width: 768px) {

    .event-table th,
    .event-table td {
        font-size: 13px;
        padding: 8px 10px;
        white-space: normal;
    }

    .event-table a.btn-secondary {
        font-size: 12px;
        padding: 4px 8px;
    }
}

/* Extra small screens */
@media (max-width: 520px) {

    .event-table th {
        font-size: 12px;
    }

    .event-table td {
        font-size: 12px;
    }
}