.card-header {
    background-color: #eaecf4 !important;
}

.projectname {
    background-color: orange;
    color: white;
    border-radius: 10px;
    padding: 2px 10px;
    margin-right: 10px;
}

.tagitem {
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 2px 5px;
    margin: 2px;
}

.alert {
    border: 1px solid #333;
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
    text-align: left;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert p {
    margin: 0px;
}

.sidebar-link i,
.sidebar-link svg,
a.sidebar-link i,
a.sidebar-link svg {
    width: 20px !important;
}

body,
html {
    font-size: 14px;
}

.required-field::after {
    content: " *";
    color: #dc3545;
}

.sidebar-cta-content {
    text-align: center;
    background: initial;
    margin: 0;
}

.sidebar-cta-content img {
    max-width: 50px;
    background: white;
    border-radius: 10px;
}

.sidebar,
.sidebar-content {
    background: #1b458d;
    color: white;
}

.sidebar-link,
a.sidebar-link {
    background-color: initial;
}

.blur {
    opacity: 0.5;
    filter: blur(8px);
}

.asmirt-blue-background {
    background: #1b458d;
}

.mw-1200 {
    max-width: 1200px;
}

/* Define the shake movement */
@keyframes shake-horizontal {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-3px); }
    40%, 80% { transform: translateX(3px); }
}

/* Apply to the element */
.shake-element {
    animation: shake-horizontal 0.3s ease-in-out;
}