* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arimo', 'Noto Sans KR', sans-serif;
    background-color: #f9fafb;
    color: #101828;
}

/* Main Content */
.main {
    margin-left: 255.994px;
    padding: 23.991px;
    min-height: calc(100vh - 64.9px);
    flex: 1;
    transition: all 0.3s ease;
}

/* Container */
.notifications-page {
    background-color: #f9fafb;
    display: flex;
    flex-direction: column;
    gap: 23.991px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-header-left {
    display: flex;
    align-items: center;
    gap: 11.989px;
}

.section-header-icon {
    width: 31.989px;
    height: 31.989px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-header-icon svg {
    width: 100%;
    height: 100%;
    color: #4f39f6;
}

.section-title {
    font-size: 30px;
    font-weight: 700;
    color: #101828;
    line-height: 36px;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #4a5565;
    line-height: 24px;
}

.mark-all-read-btn {
    background-color: white;
    border: 0.909px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 8px 12.898px;
    font-size: 14px;
    color: #0a0a0a;
    font-weight: 400;
    line-height: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.mark-all-read-btn:hover {
    background-color: #f9f9f9;
    border-color: rgba(0, 0, 0, 0.15);
}

.mark-all-read-icon {
    width: 15.994px;
    height: 15.994px;
}

/* Stats Cards */
.stats-container {
    display: flex;
    gap: 15.994px;
}

.stat-card {
    flex: 1;
    background-color: white;
    border: 0.909px solid #e5e7eb;
    border-radius: 10px;
    padding: 16.903px;
    display: flex;
    flex-direction: column;
    gap: 3.991px;
}

.stat-label {
    font-size: 14px;
    color: #4a5565;
    font-weight: 400;
    line-height: 20px;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
}

.stat-value.unread {
    color: #4f39f6;
}

.stat-value.total {
    color: #101828;
}

/* Tab Navigation */
.tab-list {
    background-color: #ececf0;
    border-radius: 14px;
    display: flex;
    gap: 0;
    padding: 0;
    height: 35.994px;
    width: fit-content;
}

.tab-button {
    background-color: transparent;
    border: none;
    border-radius: 14px;
    padding: 4.909px 8.909px;
    font-size: 14px;
    color: #0a0a0a;
    font-weight: 400;
    line-height: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 80px;
    text-align: center;
    white-space: nowrap;
}

.tab-button.active {
    background-color: white;
    border: 0.909px solid transparent;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.tab-button:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

/* Notification Item */
.notifications-container {
    display: flex;
    flex-direction: column;
    gap: 11.989px;
}

.notification-item {
    background-color: white;
    border: 0.909px solid #e5e7eb;
    border-radius: 10px;
    padding: 16.903px;
    display: flex;
    gap: 35.99px;
    transition: all 0.3s ease;
}

.notification-item.unread {
    background-color: #eef2ff;
    border-color: #c6d2ff;
}

.notification-item:hover {
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
}

.notification-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.notification-icon svg {
    width: 100%;
    height: 100%;
    color: #4f39f6;
}

.notification-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3.991px;
}

.notification-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 11.989px;
}

.notification-title {
    font-size: 18px;
    font-weight: 700;
    color: #101828;
    line-height: 27px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.notification-badge {
    background-color: #fb2c36;
    border-radius: 8px;
    padding: 2px 6.909px;
    font-size: 12px;
    color: white;
    font-weight: 400;
    line-height: 16px;
    white-space: nowrap;
}

.notification-time {
    font-size: 12px;
    color: #6a7282;
    font-weight: 400;
    line-height: 16px;
    flex-shrink: 0;
}

.notification-message {
    font-size: 14px;
    color: #4a5565;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
}

.notification-actions {
    display: flex;
    gap: 7.997px;
    align-items: center;
}

.action-button {
    background-color: transparent;
    border: none;
    border-radius: 8px;
    padding: 6px 8px;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    height: 27.997px;
}

.action-button.mark-read {
    color: #0a0a0a;
}

.action-button.mark-read:hover {
    background-color: #f3f3f5;
}

.action-button.delete {
    color: #e7000b;
}

.action-button.delete:hover {
    background-color: #ffe8eb;
}

.action-icon {
    width: 15.994px;
    height: 15.994px;
    flex-shrink: 0;
}



/* Responsive Design */
@media (max-width: 1024px) {
    .main {
        margin-left: 0;
    }

    
}

@media (max-width: 768px) {
    .main {
        padding: 15px;
    }

    .stats-container {
        flex-direction: column;
    }

    .notification-item {
        gap: 15px;
        flex-direction: column;
    }

    .notification-header {
        flex-direction: column;
        align-items: flex-start;
    }
}