/* Style pour le template des alertes email */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans";
    line-height: 1.6;
    background: #F2EEE8 !important;
    color: #333;
}

.email-alerts-container {
    width: 650px;
    margin: 75px auto 15px;
    font-family: "Open Sans";
}

.email-header {
    background: white;
    padding: 29px 17px;
    text-align: center;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.email-header .logo{
    display: flex;
    gap: 15px;
    align-items: center;
    font-family: "Open Sans";
}

.email-header .logo .logo-h1{
    font-size: 24px;
    font-weight: 700;
    color: #2e2a74;
    text-align: right;
    padding-right: 15px;
    border-right: solid 1px #2e2a74;
    margin: 0;
    line-height: 20px;
}

.email-header .logo .logo-h1 .second-text{
    font-size: 14px;
    color: #b09d73;
    line-height: 5px;
}

.email-header .logo .logo-h1 .second-text .small-logo{
    font-size: 8px;
}

.email-header .logo .logo-h2{
    font-size: 8px;
    font-weight: 700;
    color: #2e2a74;
    margin: 0;
}

.email-header h2 {
    color: #2F2F73;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.bell-icon {
    width: 30px;
    height: 30px;
}

.alert-card {
    background: white;
    padding: 29px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.alert-card h2 {
    color: #2F2F73;
    font-size: 24px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
}

.no-alerts {
    background: white;
    padding: 29px 0 43px;
    margin-bottom: 15px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.no-alerts-content {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.no-alerts h2 {
    text-align: center;
    color: #2F2F73;
    font-family: "Open Sans";
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin: 0 0 20px;
    padding: 0 30px;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 35px;
}

.tag-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.tag-title {
    font-size: 12px;
    font-weight: 700;
    color: #2F2F73;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 0 17px;
    height: 24px;
    border-radius: 50px;
    background-color: #2F2F73;
    color: white;
    font-size: 12px;
    font-weight: 700;
    line-height: 24px;
}

.delete-alert {
    display: block;
    margin: 0 auto;
    height: 49px;
    width: 191px;
    border-radius: 5px;
    background-color: #2F2F73;
    color: white;
    font-size: 14px;
    font-weight: 700;
    line-height: 19px;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.delete-alert:hover {
    background-color: #1a1a4a;
}
