.dashboard-container {
    display: flex;
    min-height: 100vh;
    background: #f9f9f9;
    font-family: 'Helvetica Neue', sans-serif;
}

/* Sidebar */
.sidebar {
    width: 72px;
    background: #0d0d0d;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
    gap: 20px;
    margin: 20px 0px 20px 20px;
    border-radius: 10px;
    border: 2px;
    justify-content: space-between;
}

.sidebar img.logo {
    width: 47px;
    margin-bottom: 20px;
}

.icon-img img {
    width: 32px;
    height: 32px;
}

/* Main Content */
.main {
    flex: 1;
    padding: 40px;
    background: #f9f9f9;
}

/* Header */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 34px;
    padding: 3px;
}


.dashboard-buttons {
    margin-top: 10px;
}

.dashboard-buttons button {
    margin-right: 10px;
    background: white;
}

/* Event Area */
.events-section {
    margin-top: 40px;
}

.events-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-family: 'Oswald';
    font-weight: 500;
    text-transform: uppercase;
}

.add-event-button-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.add-event-button-top a {
    background: #008FFF;
    color: white;
    padding: 18px 30px;
    text-decoration: none;
    border-radius: 10px;
    width: 285px;
    height: 56px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.add-event-button-top a:hover, a:focus {
    color: #fff;
}

.empty-event-box {
    background: white;
    border: 2px dashed #D2D3D4;
    padding: 50px;
    text-align: center;
    height: 367px;
    border-radius: 10px;
}

.empty-event-box p {
    margin-bottom: 20px;
    color: #4D5156;
    font-size: 18px;
    font-style: italic;
}

.empty-event-box a {
    border: 2px solid #008FFF;
    padding: 18px 30px;
    color: #008FFF;
    text-decoration: none;
    border-radius: 10px;
    font-size: 14px;
}

.dashboard-header h1 {
    font-family: Oswald;
    font-weight: 700;
    font-size: 32px;
    line-height: 82px;
}

.notification img {
    height: 24px;
    width: 24px;
}

.user-img-info img {
    width: 40px;
    height: 40px;
}

.user-img-info{
    display: flex;
    gap: 6px;
}

.info-details strong {
    font-family: Helvetica;
    font-size: 16px;
}

.info-details small {
    font-family: Helvetica;
    font-size: 15px;
    font-weight: 400;
    display: block;
}

.dashboard-buttons button {
    border-radius: 10px;
    padding: 18px 30px;
    cursor: pointer;
    border: 2px solid #17181B66;
    font-size: 14px;
    font-weight: 700;
    color: #17181B;
    height: 56px;
}

button.view_lobby {
    width: 174px;
}

button.archived_event {
    width: 256px;
}

button img {
    width: 20px;
}

button:hover {
    color: inherit !important;
    text-decoration: none;
    background: none !important;
    border: 2px solid #17181B66 !important;
}

.events-section h2 {
    font-size: 28px;
    font-family: 'Oswald';
    font-weight: 500;
    text-transform: uppercase;
}

.custom-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 6px;
  overflow: hidden;
  background-color: white;
}

.custom-table thead {
  background-color: #EBEBEB;
}

.custom-table th {
    text-align: left;
    padding: 12px 40px;
    font-size: 14px;
    text-transform: uppercase;
    color: #666A6F;
    border-bottom: 2px solid #008FFF;
    font-weight: 400;
}

.custom-table td {
    padding: 12px 40px;
    border-top: 1px solid #DBE2E9;
    vertical-align: middle;
    font-size: 16px;
    color: #666A6F;
}

.action-btn {
    background: none;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
    width: 44px;
    height: 44px;
    border: 2px solid #DBE2E9;
}

.action-btn:hover {
  background: #e0e0e0;
}

.action-btn img {
    width: 24px;
    height: 24px;
}

.add_events{
    width: 223px !important;
}