.boardWarp{
    background-color: #FFF;
    width: 100%;
}
.boardInner{
    max-width: 1760px;
    margin: 80px 0;
    margin-left: auto;
    margin-right: auto;

}

.boardHeader{
    display: flex;
    background-color: #F8F8F8;
    flex-direction: column;    
    padding : 10px 40px;
}
.title , .contentInfo , .fileSection
{
    display: flex;
    align-items: center;
    gap:30px;
    height: 65px;
    border-bottom:1px solid #e0e0e0;
    padding:20px;

}
.fileSection
{
    border: none;
}
.contentInfo
{
    display: flex;
    justify-content: space-between;

    
}
.rightcontent{
    display: flex;
    gap:105px;
}
.title span {
    font-size: 18px !important; /* 이렇게 하면 우선순위가 높아짐 */
}

span {
    &:first-child{
       font-weight: bold;
    }
} 


.boardHeader div{

}

.boardContent {
    margin: 5%;
}

.boardContent span:first-child {
    font-weight: revert;
  }

.boardFooter{
    display: flex;
    background-color: #F8F8F8;
    flex-direction: column;    
    padding : 10px 60px;
}
.comment-container {
    width: 100%;
    margin: 0 auto;
    border-radius: 8px;
    padding: 20px;
}

.comment {
    height: 95px;
    border-bottom: 1px solid #ddd;
    margin: 15px 0;

}

.comment strong {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.comment time {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
}

.comment p {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.comment-input {
    margin: 20px 0;
    display: flex;
    gap: 10px;
}

.comment-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #555;
    border-radius: 4px;
    font-size: 14px;
    height: 55px;
}

.comment-input button {
    padding: 10px 20px;
    border: none;
    background-color: #ffffff;
    border: 1px solid #ddd;
    color: #222;
    border-radius: 4px;
    font-size: 14px;
    border: 1px solid #555;
    cursor: pointer;
}

.comment-input button:hover {
    background-color: #0056b3;
}

.login-prompt {
    font-size: 14px;
    color: #555;
    text-align: center;
    margin-top: 20px;
}
.BtnArea{
    margin-top: 120px;
}

.BtnArea a{
    width: 250px;
    height: 65px;
    background-color: #FFA700;
    color:#FFF;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}


/* 모달 배경 */
.modal {
    display: none !important; /* 기본적으로 숨김 */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

/* 모달 콘텐츠 */
.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 400px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* 모달 헤더 */
.modal-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

/* 모달 본문 */
.modal-body p {
    font-size: 14px;
    color: #555;
    margin: 20px 0;
}

/* 모달 푸터 */
.modal-footer {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.modal-footer button {
    background-color: #ffa700;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.modal-footer button:hover {
    background-color: #cc8400;
}

.area-btn{
    margin-top: 120px;
}

.area-btn a {
    width: 250px;
    height: 65px;
    background-color: #FFA700;
    color:#FFF;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.edit-btn {
    width: 250px;
    height: 65px;
    /*회색 색깔*/
    background-color: #FFA700;
    color:#FFF;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.area-btn button{
    width: 250px;
    height: 65px;
    border: 1px solid #F04869;
    background: none;
    color: #F04869;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

input {
    width: 90%;
    padding: 15px;
    height: 60px;
    border: 1px solid #DDD;
    background-color: #FFF;
    color: #333333;
    border-radius: 8px;
}

.boardAnswer {
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 1760px;
    margin: 80px auto;
}

.boardAnswer h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.boardAnswer p {
    margin: 0;
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}
