[data-bs-theme="dark"] input::placeholder {
    color: #556677 !important;
}

[data-bs-theme="light"] input::placeholder {
    color: #cccccc !important;
}

header .user-img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    justify-content: center;
}

header .user-img .avatar {
    margin-right: 0px!important;
}

[data-bs-theme="dark"] header .user-img {
    background-color: #333;
    color:#eeeeee;
}

[data-bs-theme="light"] header .user-img {
    background-color: #555555;
    color: #ffffff;
}

.form-select-xl {
    padding-top: .85rem!important;
    padding-bottom: .85rem!important;
    padding-left: 1rem!important;
    font-size: 1.25rem!important;
    border-radius: .3rem!important;
}

.cursor-pointer,
.cursor-pointer:hover {
    cursor: pointer!important;
}

/* Pulsating button effect */
.pulsating-btn {
    position: relative;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(220, 53, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

.pulsating-btn:hover {
    animation: none;
}
