/* General */
body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url(../imgs/background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
/* Quotes */
.quotes-container {
    width: 605px;
    background: linear-gradient(100deg,rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(25px);
    border:1px solid rgba(255, 255, 255, 0.30);
    border-radius: 10px;
    box-shadow: -5px 2px 54px -9px rgba(0, 0, 0, 1);
}
.quotes-content i:first-child {
    margin: 3px 10px 0 0;
}
.quotes-content i:last-child {
    margin: 0 0 3px 10px;
}
.quotes-container .quotes-titile {
    font-size: 25px;
    font-weight: 600;
}
.quotes-buttons {
    border-top: 1px solid #888;
}
.quotes-features ul li {
    width: 40px;
    height: 40px;
    border: 1px solid #222;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 0px 5px;
    border-radius: 50%;
    transition: all 0.3s;
}
.quotes-features ul li:hover {
    background-color: #222;
    color: #fff;
}
/* Toast Notification */
#toastContainer {
    width: 90%;
    max-width: 400px; 
    position: fixed;
    top: 25px;
    right: 0;
    z-index: 1100;
    padding: 0 15px; 
}
.fade-in {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}
.fade-out {
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
}
.d-none {
    display: none;
}

@media (max-width: 768px) {
    #toastContainer {
        width: 100%; 
        right: 0;
    }
}
