#gadget-sidebar {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 150px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 5;
}

.gadget {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.gadget-clock {
    text-align: center;
}

.gadget-clock .time {
    font-size: 24px;
    font-weight: bold;
}

.gadget-clock .date {
    font-size: 12px;
}

.gadget-calendar {
    font-size: 11px;
}

.gadget-calendar table {
    width: 100%;
    border-collapse: collapse;
}

.gadget-calendar th {
    font-weight: bold;
    padding-bottom: 5px;
}

.gadget-calendar td {
    text-align: center;
    padding: 2px;
}

.gadget-calendar .today {
    background: rgba(58, 123, 213, 0.6);
    border-radius: 50%;
}

/* Notification System */
#notification-center {
    position: fixed;
    bottom: 50px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2000;
}

.notification {
    width: 250px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 5px;
    border-left: 5px solid #3a7bd5;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
