/* Order Notification Styles */
.order-notification {
    position: fixed;
    top: 30px;
    right: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    padding: 25px;
    width: 350px;
    z-index: 10000;
    transform: translateX(120%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 5px solid #5ad360;
    font-family: 'Winky Rough', sans-serif;
}

.order-notification.show {
    transform: translateX(0);
}

.notification-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.notification-icon {
    width: 50px;
    height: 50px;
    background: #5ad360;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.notification-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.notification-title {
    font-size: 1.4rem;
    color: #1B3C53;
    font-weight: bold;
}

.notification-content {
    color: #456882;
    line-height: 1.6;
    margin-bottom: 20px;
}

.order-details {
    background: #F9F3EF;
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
    border: 1px solid #d2c1b6;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #d2c1b6;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: #1B3C53;
}

.detail-value {
    color: #456882;
    font-weight: bold;
}

.notification-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
}

.action-btn {
    padding: 8px 20px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Winky Rough', sans-serif;
}

.action-btn.primary {
    background: #1B3C53;
    color: white;
}

.action-btn.primary:hover {
    background: #456882;
}