@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR&display=swap');

body,button,input,textarea, h1, h2, h3, h4, h5, h6 {
    font-family: "Noto Sans KR", sans-serif !important;
}

body::-webkit-scrollbar {
  display: none;
}

i,a,img {
    -webkit-touch-callout:none;
	-webkit-user-select:none;
	-khtml-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.eng-white-space {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}



.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.footer {
    position: fixed;
    bottom: 0;
}

.hf-padding {
    padding-bottom: 6rem;
    padding-top: 4rem;
}

.custom-btn {
      background-color: #030303; /* 원하는 색상 코드로 변경 */
      color: #fff; /* 텍스트 색상 설정 */
      border: 2px solid #030303;
      border-radius: 30px;
      cursor: pointer;
      line-height: normal;
      height: 1.5rem;
}

.login-input{
    border-radius: 4px !important;
    background-color: #65e8d7 !important;
    color: #ffffff !important;
    font-size: 14px !important;
    outline: none;
}

.input-placeholder-white::-webkit-input-placeholder {
    color: #ffffff !important;
}

.input-placeholder-black::-webkit-input-placeholder {
    color: #000000 !important;
}


.login-btn{
    border: 1px solid #030303 !important;
    border-radius: 4px !important;
    color: #030303 !important;
    outline: none !important;
}

/*button hover(click)시에 테두리 안보이게*/
.btn:active, .btn:focus {
outline:none !important;
box-shadow:none !important;}


/* join html */
input#agreeCheck:checked + label:before {
    background-color: #65e8d7 !important;
}

/* 글 목록 */
input#listCheck:checked + label:before {
    background-color: #99b9c8 !important;
}

.eng-checkbox-input:checked~.eng-checkbox-label:before {
    border-color: #ffffff !important;
    background-color: #ffffff !important;
}

.eng-checkbox-input:focus~.eng-checkbox-label:before {
    box-shadow: inset 0 1px 1px rgba(39,44,51,.075),0 0 0 .075rem #fff,0 0 0 .2rem #fff !important;
}

input[type="checkbox"].eng-checkbox-input:checked {
    accent-color: #65e8d7;
}

/* board.html */
.category-circle {
    width: 3.5rem;
    height: 3.5rem;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 10px auto;
    cursor: pointer;
}

.category-icon {
    width: 3rem;
    height: 3rem;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.category-text {
    text-align: center;
    margin-top: 10px;
    font-size: 0.8rem;
    color: white;
}

.category-item {
    flex: 1;
    max-width: 100px;
}

.post-card {
    border: none;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.post-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.post-content img {
    width: 100%;
    border-radius: 10px;
    height: 200px;
    object-fit: cover;
}

.post-footer i {
    vertical-align: middle;
    margin-right: 5px;
}

/* board_post.html */
.eng-ft-bg {
    background: #d3e8e6 !important;
}  

.eng-img-cover {
    width: 5rem;
    height: 5rem;
    object-fit: cover;
}

.eng-rp-border {
    border-bottom: 1px solid #c1c1c1;
}

.eng-dm{
    color: #c0c0c0;
}

/*photo.html*/
.board-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7); 
    z-index: 10;
}

.photo-image-container {
    flex: 1;
    padding: 1px 8px;
}

.photo-img-size1 {
    /*height: 14rem;
    width: 10rem;
    object-fit: cover;*/
    width: 100%;
    height: 13rem;
    object-fit: cover;
    display: block;
}

.photo-img-size2 {
    /*height: 4rem;
    width: 4rem;
    object-fit: cover; */
    width: 100%;
    height: 4rem;
    max-width: 20rem;
    max-height: 20rem;
    object-fit: cover;
    display: block;
}

/*event html*/
.event-btn {
    background-color: #080808; /* 원하는 색상 코드로 변경 */
    color: #65e8d7; /* 텍스트 색상 설정 */
    border: 2px solid #080808;
    border-radius: 4px;
    cursor: pointer;
}

.event-btn:hover {
    background-color: #080808 !important; /* hover 시 배경색 변경 */
    color: #65e8d7 !important; /* hover 시 텍스트 색상 변경 */
}

.eng-bg-black {
    background-color: black !important;
}
.eng-floating-btn {
    top: 88%;
    left: 50%;
    transform: translate(-50%, -49%);
    height: 1.5rem;
    width: max-content;
    font-size: 0.6rem;
    background-color: black !important;
    color: white;
    outline: none;
    border: none !important;
    text-transform: none;
}

.eng-event-content {
    color: #c1c1c1;
    word-break:break-all;
}

.eng-floating-top {
    top: 0;
    font-size: 0.7rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    height: 2rem;
}

.eng-floating-bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    height: 2rem;
    color: white;
}

.eng-p-0 {
    padding: 0;
}

.eng-pl-0 {
    padding-left: 0 !important;
}

.eng-pr-0 {
    padding-right: 0 !important;
}

.icon-number {
    position: absolute;
    bottom: 0;
    color: white;
}
.left-icon-number {
    left: 0;
}
.right-icon-number {
    right: 0;
}

.eng-event-img-main{
    object-fit: cover;
    height: 11rem;
    width: 11rem;
}

.eng-event-img{
    object-fit: cover;
    height: 8rem;
    width: 8rem;
}




/* event_post.html */
.eng-background-none {
    background: none !important;
}

.eng-img-icon {
    position: absolute;
    bottom: 0.2rem;
    right: 0.8rem;
    color: white;
    font-size: 2rem;
}

.eng-reply-div {
    height: 3.5rem; 
    padding: 0.2rem;
}

.eng-reply-textarea {
    height: 45px !important;
    padding-top: 0.75rem !important;
    overflow: hidden;
    resize: none;
}

/* event_write.html */
.eng-img-size {
    width:50px;
    height::50px;
}

.eng-img-selected {
    border: 2px solid white;
}

/* event_img.html */   
.image-slider-container {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.image-slider-container.active {
    display: flex; /* Show slider when active */
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

/* board_wirte.html*/
.bw-w{
    background: #c1c1c1;
    height: 1px;
    border: 0 !important;
}

/* myinfo.html */
.eng-info-btn {
    background-color: #e3f6ff !important; 
    width: 8rem;
}

.eng-list {
    padding: .75rem 1.5rem;
    background-color: #fff;
    position: relative;
    display: block;
}

.eng-gray-bg {
    background-color: #f0f0f0 !important;
}

/* chat_start.html */
.chat-slider-container {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 9999;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.chat-slider-container.active {
    display: flex; /* Show slider when active */
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

.eng-hg {
    color: #65e8d7;
    font-size: large;
}

/* chat_room.html */
.chat-fixed-element {
    position: fixed;
    top: 50px; /* 헤더 높이보다 약간 더 아래로 설정 */
    left: 0;
    right: 0;
    z-index: 1000; /* 다른 요소 위에 위치하도록 */
    background-color: #d3e8e6; /* 배경색 설정 */
    padding: 10px;
    text-align: center;
}

/* .chat-rounded {
    border-radius: 1rem!important
} */

.chat-rounded {
    border-radius: 1rem!important;
    display: inline-block;
    max-width: 100%;
}
.bubble-col {
    max-width: 75%;
}

/* chat_list.html */
.delete-icon {
    display: none;
    cursor: pointer;
    color: red;
    transform: translate(70%);
    padding: 1rem;
}
.chat-item.swiped .delete-icon {
    display: inline-block;
}
.chat-item {
    transition: transform 0.3s ease;
}
.chat-item.swiped {
    transform: translateX(-50px);
}


/* ----- */
.btn:active, .btn:focus {
    outline:none !important;
    box-shadow:none !important;
}

.eng-color {
   color: #65e8d7;
}

.eng-bg-color {
   background-color: #65e8d7 !important;
}

.board-div-radius {
    border-radius: 8px !important;
}

.p-mb-0 { margin-bottom: 0 !important; }

.custom-border-radius { border-radius: 30px;}
.custom-search-form {
    background-color: #fff;
    border: 1px solid #edf0f2;
    border-radius: 30px;;
}

.font-size-1rem { font-size: 1rem; }
.material-icons.md-18 { font-size: 18px; }
.material-icons.md-24 { font-size: 24px; }
.material-icons.md-36 { font-size: 36px; }
.material-icons.md-48 { font-size: 48px; }

.custom-shadow { box-shadow: 1px 2px 5px #00000066; }

.floating-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      text-align: center;
      line-height: 50px;
      background-color: #007bff;
      color: #fff;
      cursor: pointer;
      transition: background-color 0.3s ease;
}

.scrolling-wrapper-flexbox {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    ms-overflow-style: none;  /* IE 10+ */
}
.scrolling-wrapper-flexbox::-webkit-scrollbar { 
    display: none; /* Safari and Chrome */
}

.overflow-auto::-webkit-scrollbar {
    display: none;  /* Chrome, Safari and Opera */
}

.overflow-auto {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

input, textarea, select, button:focus {
    outline: none;
    border: 0;
    box-shadow: none !important;
}

.eng-text-line{ 
    white-space: pre-wrap;
}
