html {
    scroll-behavior: smooth;
}
/* 고정 헤더 높이만큼 보정 */
[id^="tabBroadCastReceiverWrapper"] {
    scroll-margin-top: 140px; /* header 높이에 맞게 조정 */
    transition: 1s ease;
}

.aurora100Function{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    margin-bottom: 200px;
    position: relative;
}

.fakeBrowserHeaderFunction {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 3px;
}

.fakeBrowserHeaderFunction .dot {
    width: 6px;
    height: 6px;
    background-color: #2a33d4; /* 파란색 */
    border-radius: 50%; /* 동그라미 */
}

.fakeBrowserHeaderFunction .bar {
    width: 54px;
    height: 4px;
    background-color: #2a33d4; /* 파란색 */
    border-radius: 2px;
}

.aurora100Description{
    margin: 0 0 36px 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: -0.5px;
}

.aurora100Description>p{
    margin: 0;
}

.fakeBrowserHeaderSpecific {
    display: flex;
    align-items: center;
    gap: 5px;   /* 점 사이 간격 */
    margin-left: 3px;
}

.fakeBrowserHeaderSpecific .dot {
    width: 6px;
    height: 6px;
    background-color: #2a33d4; /* 파란색 */
    border-radius: 50%; /* 동그라미 */
}

.fakeBrowserHeaderSpecific .bar {
    width: 99px;
    height: 4px;
    background-color: #2a33d4;
    border-radius: 2px;
}

td{
    padding: 20px 15px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -1px;
    transition: color 0.3s ease;
}

td:not(.colored):hover {
    color: #2a33d4;
    transition: color 0.3s ease;
}
.colored{
    color: #0a81d8;
}
#specTable100 tbody tr:nth-child(odd) {
    background-color: white;
}

#specTable100 tbody tr:nth-child(even) {
    background-color: #f3f3f3;
}

.observerUp{
    position:absolute;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    background-color: #441cac;
    color: white;
    bottom: -80px;
    right: 0;
    padding: 12px 24px;
    border-radius: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: background-color 0.3s ease;
}

.observerUp:hover{
    background-color: #12212c;
    transition: background-color 0.3s ease;
}