/* General Dashboard Styling */
.conference-dashboard {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    font-family: "Poppins", sans-serif;
    color: #333;
}

/* Headings */
.conference-dashboard h2,
.conference-dashboard h3 {
    font-weight: 600;
    color: #1D3557;
    margin-bottom: 15px;
}

/* Dashboard Stats Layout */
.dashboard-stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-box {
    flex: 1;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.15);
}

.stat-box span {
    display: block;
    font-size: 14px;
    color: #888;
    margin-bottom: 5px;
}

.stat-box h3 {
    font-size: 22px;
    font-weight: bold;
    color: #007BFF;
}

/* Recent Conferences Section */
.recent-conferences {
   padding-bottom: 10px;
}

.conference-item {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}

.conference-item:hover {
    background: #f8f9fa;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}

/* Conference Thumbnail */
.conference-thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}



/* Conference Details */
.conference-details {
    flex-grow: 1;
}

.conference-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: #007BFF;
    margin: 0;
}

.conference-details h4 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.conference-details h4 a:hover {
    color: #0056b3;
}

.conference-date {
    font-size: 14px;
    color: #777;
    display: block;
    margin-top: 3px;
}
.conference-search-form {
  width: 900px;
  align-items: center;
  margin-bottom: 20px;
}

.conference-search-form #titleFilter {
  width: 300px; /* Reduced width of the search input */
  margin-right: 10px;
}

.conference-search-form .btn {
  margin-right: 5px; /* Moved the buttons slightly to the left */
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .dashboard-stats {
        flex-direction: column;
        gap: 10px;
    }

    .stat-box {
        padding: 15px;
    }
}

@media (max-width: 600px) {
    .conference-thumbnail {
        width: 50px;
        height: 50px;
    }
}
