* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

:root {
  --light-black:#062424;
  --black:#000000;
  --blue: #2d8cff;
  --red: #F44336;
  --light-red: #FF6F61;
  --orange:#FFB803;
  --yellow: #FFE236;
  --white: #ffffff;
  --light-grey: #eaeaead3;
  --grey: #ddd;
  --dark-grey:#a6a6a6;

}

body{
    background: var(--white);
}

html{
    min-width: 320px;
    scroll-behavior: smooth;
}

a{
    text-decoration: none;
}


.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    min-width: 260px;
    max-width: 320px;
    padding: 14px 18px;
    border-radius: 12px;
    color: var(--white);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    animation: toastIn 0.35s ease;
}

/* Types */
.toast.success { background: #22c55e; }
.toast.error { background: #ef4444; }
.toast.warning { background: #f59e0b; }
.toast.info { background: #3b82f6; }

.toast button {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    margin-left: 10px;
}

/* animation */
@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}