

/* 세미나 등록 제목 */
.seminar_reg_title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

/* 회원 상태 표시 */
.mem {
    background: #d4edda;
    color: #155724;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 5px;
}

.nonmem {
    background: #f8d7da;
    color: #721c24;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 5px;
}

/* 회원/비회원 가격 표시 */
.member {
    color: #28a745;
    font-weight: 600;
}

.nonmember {
    color: #dc3545;
    font-weight: 600;
}

/* 검색 등록 정보 영역 */
.search-regist-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-top: 15px;
}

.search-regist-info .title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff;
    text-align: center;
}

/* 컨퍼런스 정보 */

.conf-info-tit {
    font-weight: 600;
    color: #495057;
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 14px;
}

.conf-info-txt {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-top: 10px;
}

/* 검색 등록 래퍼 */
.search-regist-wrap {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 세미나 테이블 */
.table-seminar {
    margin-bottom: 20px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.table-seminar th {
    background: #f8f9fa;
    font-weight: 600;
    color: #495057;
    padding: 12px 15px;
    border-bottom: 1px solid #dee2e6;
    vertical-align: middle;
    font-size: 14px;
}

.table-seminar td {
    padding: 12px 15px;
    vertical-align: middle;
    color: #333;
    font-size: 14px;
    border-bottom: 1px solid #f1f3f4;
}

.table-seminar tr:last-child td {
    border-bottom: none;
}

.table-seminar tr:hover {
    background: #f8f9fa;
}

/* 서브 컨텐츠 */
.sub_content1 {
    background: #e9ecef;
    padding: 10px;
    border-radius: 4px;
    font-size: 13px;
    color: #495057;
    line-height: 1.4;
}

.sub_content1 .btn {
    margin-top: 5px;
}

/* 버튼 등록 영역 */
.btn_reg {
    margin: 20px 0;
    padding: 15px 0;
}

/* 등록 버튼 */
.btn-regist {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-width: 180px;
}

.btn-regist:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    color: white;
    text-decoration: none;
}

.btn-regist:active {
    transform: translateY(0);
}

/* 결제 상태 강조 */
.table-seminar td[style*="color:red"] {
    font-weight: 600;
}

.table-seminar td[style*="color:red"] span {
    background: #f8d7da;
    color: #721c24;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
}

/* 페이지 제목 */
h3 {
    color: #333;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

/* 안내 메시지 */
.search-regist-wrap > div:last-of-type {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 4px;
    padding: 10px 15px;
    margin-top: 20px;
    font-size: 14px;
    color: #856404;
}

/* 모달 관련 스타일 개선 */
.modal-header {
    border-bottom: 2px solid #007bff;
}

.modal-title {
    color: #333;
    font-weight: 600;
}

.modal-body p {
    line-height: 1.6;
    color: #666;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .w-1200 {
        padding: 0 15px;
    }

    .seminar_reg_title {
        font-size: 20px;
    }

    .conf-info,
    .search-regist-wrap {
        padding: 15px;
    }

    .search-regist-info {
        padding: 15px;
    }

    .search-regist-info .title {
        font-size: 16px;
    }

    .table-seminar th,
    .table-seminar td {
        padding: 8px 10px;
        font-size: 13px;
    }

    .btn-regist {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 150px;
    }

    h3 {
        font-size: 24px;
    }
}

/* 스크롤바 스타일 */
.search-regist-wrap::-webkit-scrollbar {
    width: 6px;
}

.search-regist-wrap::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.search-regist-wrap::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.search-regist-wrap::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* 테이블 컬럼 그룹 스타일 */
.table-seminar colgroup col:first-child {
    background: #f8f9fa;
}

/* 취소 관련 스타일 */
.table-seminar .text-center {
    font-weight: 600;
    color: #dc3545;
}

/* 은행 정보 스타일 */
.sub_content1 span {
    display: inline-block;
    margin-right: 10px;
}

/* 추가 여백 클래스 */
.ms-2 {
    margin-left: 0.5rem;
}

.pb-1 {
    padding-bottom: 0.25rem;
}

.pt-4 {
    padding-top: 1.5rem;
}
