h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

/* table 한줄 처리 */
table th,td {
    font-size: .9em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* tab selector */
.tab-selector {
    display: flex;
    margin: 0 auto;
}

.tab-selector > a {
    padding: 12px;
    font-size: .9em;
    color: rgb(0,0,0,0.4);
    border-bottom: 2px solid rgb(234,234,234);
    text-decoration: none;
}
@media(min-width: 768px) {
    .tab-selector > a {
        padding: 12px 32px;
        font-size: 1em;
    }
}

.tab-selector > a.active {
    font-weight: bold;
    color: rgb(1,87,164);
    border-bottom: 2px solid rgb(1,87,164);
}
/* end: tab selector */

/* info */
.info-table {
    border-top: 2px solid rgb(79, 123, 183);
    display: flex;
    flex-direction: column;
}

.info-row {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #cccccc;
}
@media(min-width: 768px) {
    .info-row {
        flex-direction: row;
    }
}

.info-table .label {
    color: rgba(0,0,0,0.54);
    background-color: #f8f9fa;
    padding: 8px 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
@media(min-width: 768px) {
    .info-table .label {
        width: 200px;
        justify-content: flex-end;
    }
}

.info-table .label-text {
    font-size: .9em;
    font-weight: bold;
    color: black;
}

.info-table .content {
    font-size: .9em;
    padding: 8px 16px;
    flex: 1;
    color: rgb(33, 37, 41);
}

.info-table .input-row {
    display: flex;
    margin-bottom: 4px;
}

.info-table .input-content {
    margin: 0 8px;
    flex: 1;
}
/* end: info */

/* bootstrap custom */
.btn {
    border-radius: 3px;
}

.alert {
    font-size: .9em;
}

span[data-bs-toggle="tooltip"] {
    font-style: italic;
    text-decoration-line: underline;
    color: rgb(25, 57, 108);
    font-weight: bold;
    
}

.card {
    border-radius: 0;
}
/* end: bottostrap custom */