#layer-popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 99999;
}

.layer-dim {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* 배경을 조금 더 투명하게 */
}

.layer-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px; /* 너비를 살짝 넓힘 */
    background: #fff;
    border-radius: 4px; /* 이미지는 곡률이 크지 않음 */
    padding: 40px 30px 30px; /* 상단 여백 확보 */
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* 아이콘을 이미지처럼 원형 테두리 스타일로 변경 */
.layer-popup-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid #000;
    border-radius: 50%;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 25px;
}

.layer-popup-message {
    font-size: 16px; /* 폰트 크기 살짝 키움 */
    font-weight: 500;
    color: #000;
    margin-bottom: 35px;
    letter-spacing: -0.5px;
}

.layer-popup-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.layer-popup-buttons button {
    flex: 1; /* 버튼이 동일한 비율로 가로를 꽉 채우도록 */
    max-width: 140px;
    height: 45px; /* 버튼 높이를 키워 시원하게 */
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.2s;
}

/* 취소 버튼: 흰색 배경 + 진한 테두리 */
.layer-popup-buttons .btn-cancel {
    background: #fff;
    color: #000;
    border: 1px solid #333;
}

/* 확인 버튼: 검정 배경 */
.layer-popup-buttons .btn-confirm {
    background: #111;
    color: #fff;
    border: 1px solid #111;
}





.detail-table th {
    vertical-align: middle !important;
    background-color: #f7f8f9;
    color: #4a4a4a;
    font-weight: 500;
}

.detail-table td {
    vertical-align: middle !important;
    padding: 12px 15px !important;
}

/* 프로젝트 태그 스타일 (Bulma 미사용 시) */
.border-default {
    border: 1px solid #dbdbdb;
    border-radius: 4px;
    padding: 4px 12px;
    display: inline-block;
}