.sidebar-logo {
  height: 63px !important;
  width: 233px;
  padding: 2px;
  text-align: center;
  margin: 10px;
}
.sidebar-footer {
  position: absolute;
  bottom: 10px;
  width: 89%;
}
.toast {
    position: fixed;
    right: 20px;
    min-width: 260px;
    z-index: 99999;
    animation: slideIn 0.4s ease;
}

.toast-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.toast-content.success {
    background: #16a34a;
}

.toast-content.error {
    background: #dc2626;
}

.icon {
    margin-right: 8px;
}

.close {
    cursor: pointer;
    margin-left: 10px;
}

.progress {
    height: 3px;
    width: 100%;
    animation: progress 5s linear forwards;
}

.success-bar {
    background: #22c55e;
}

.error-bar {
    background: #ef4444;
}

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

@keyframes fadeOut {
    to { opacity: 0; transform: translateX(100%); }
}

@keyframes progress {
    from { width: 100%; }
    to { width: 0%; }
}