.bil-notification-container {
    width: 300px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 50px;
    right: 10px;
    z-index: 1000;
}

.bil-notification-header {
    background-color: #00A3A1;
    color: white;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.bil-notification-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
    min-height: 60px;
}

.bil-notification-item:last-child {
    border-bottom: none;
}

.bil-notification-item:hover {
    background-color: #f5f5f5;
}

.bil-notification-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.bil-notification-content {
    flex: 1;
}

.bil-notification-text {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

.bil-notification-text a.text {
    text-decoration: none;
    color: #333;
    display: block;
}

.bil-notification-text a.text:hover {
    text-decoration: underline;
}

.bil-notification-text a.text.bold {
    font-weight: bold;
}

.bil-notification-time {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
}

.bil-notification-footer {
    text-align: center;
    padding: 10px;
    background-color: #fff;
}

.bil-notification-footer a {
    text-decoration: none;
    color: #00A3A1;
    font-size: 14px;
    font-weight: bold;
}

.bil-notification-footer a:hover {
    text-decoration: underline;
}

.bil-circle {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #00A3A1;
    margin-left: 10px;
    flex-shrink: 0;
}

.bil-circle.bil-read {
    background-color: #ccc;
}

/* Alternatif arka plan için stil */
.bil-bg.ice-blue {
    background-color: #f9f9f9;
}