body {
    background-color: #3c3f41;
    color: #fff;
}

.width50 {
    width: 50px;
}

.width70 {
    width: 70px;
}

.width100 {
    width: 100px;
}

.width120 {
    width: 120px;
}

.width150 {
    width: 150px;
}

.width170 {
    width: 170px;
}

.width200 {
    width: 200px;
}

.width250 {
    width: 250px;
}

.width300 {
    width: 300px;
}

.width15p {
    width: 15%;
}

.width20p {
    width: 20%;
}

.width25p {
    width: 25%;
}

.width40p {
    width: 40%;
}

/* FLASH MESSAGES */
.flash-container {
    position: fixed;
    top: 40px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px; /* Space between stacked messages */
    align-items: flex-end;
    opacity: 0.9;
}

/* `md` applies to small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .flash-container {
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        align-items: center;
        max-width: 90%;
    }
}

/* Shared Flash Message Styling */
.flash-container .flash-message {
    width: 300px;
    color: #ffffff;
    padding: 12px;
    font-size: 0.9rem;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

/* Success Flash (Green) */
.flash-container .flash-message.success-flash {
    background-color: #4CAF50; /* Green */
}

/* Error Flash (Red) */
.flash-container .flash-message.error-flash {
    background-color: #d32f2f; /* Red */
}

/* Icons */
.flash-container .flash-message.flash-message i {
    font-size: 1rem;
}

/* Disappearance Animation */
@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}


