header {
    width: 100%;
    background-color: #ffffff;
    height: 6rem;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 0;
    left: 0;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(55, 63, 87, 0.10);
}
header .logo-box {
    display: flex;
    width: 20rem;
    height: 100%;
    align-items: center;
    justify-content: center;
}
header .alarm-btn {
    position: relative;
    cursor: pointer;
    display: block;
    margin: auto 0;
    width: 2.1rem;  /* 아이콘 크기 설정 */
    height: 2.2rem;
    background-size: contain;
    background: url(../asset/alarm.svg) no-repeat center;
}
.alarm-wrapper {
    position: fixed;
    top: 8.5rem;
    right: 6rem;
    display: block;
    width: 40rem;
    min-height: 20rem;
    background-color: #F7FAFF;
    z-index: 10;
    border: 1px solid #DADFEB;
    border-radius: 10px;
}

.alarm-popup-header{
    display: flex;
    position: sticky;
    justify-content: space-between;
    width: 40rem;
    height: 8rem;
    box-sizing: border-box;
    padding: 2rem;
    align-items: center;
    align-content: center;
    text-align: center;
    box-shadow: 0 2px 4px rgba(55, 63, 87, 0.10);
}
#alarm-cnt {
    display: block;
    position: absolute;
    top: -0.3rem;
    right: -0.7rem;
    min-width: 1.5rem;
    width: auto;
    height: 1.4rem;
    background-color: #0222B4;
    border-radius: 50%;
    color: #ffffff;
    text-align: center;

}
#close {
    font-size: 2.4rem;
    color: #8491A7;
    cursor: pointer;
}
#close:hover {
    background-color: #9e3737;
}
.alarm-count {
    width: auto;
    min-width: 2.2rem;
    min-height: 100%;
    font-size: 1.2rem;
    color: #ffffff;
    background-color: #0222B4;
    box-sizing: border-box;
    padding: 0 1rem;
    border-radius: 50%;
    align-content: center;
    text-align: center;
}
#alarm-list {
    box-sizing: border-box;
}
.alarm {
    display: flex;
    min-width: 100%;
    gap: 0;
    height: 7rem;
}
.alarm:hover {
    opacity: 0.5;
}
.alarm-data {
    cursor: pointer;
    width: 33rem;
    min-height: 4rem;
    padding: 1.4rem 0 1.4rem 2rem;
    border-bottom: 1px solid #DADFEB;
}
.alarm-remove {
    content: "";
    cursor: pointer;
    width: 5rem;
    height: 100%;
    background-size: contain;
    background: url("../asset/remove.svg") no-repeat center;
    box-sizing: border-box;
    border-bottom: 1px solid #DADFEB;
}
.alarm-data p {
    font-size: 1.2rem;
    color: #000000;
}
.stamp p {
    color: #8491A7;
}
.logo-box img {
    max-width: 7.1rem;
    height: 3rem;
}

#logout {
    margin-right: 2rem;
    background-color: #0222B4;
    color: white;
    border: none;
    padding: 0.5rem 1.2rem;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

#logout:hover {
    background-color: #203cb8;
}
