

header{
      
}
header h1{
    width: 200px;
}

main aside{
    width: 220px;
}


main aside li{
    background: #ddd;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;

}
.my-info{
    display: flex;
    margin-bottom: 36px;
    justify-content: space-between;
}
.my-info .table-wrap{
    flex: 1;
    display: flex;
    gap: 1%;
}
.my-info table{
    width: 49.5%;
   border-collapse: collapse;
   border-top: 1px solid #000;

}
.my-info table th{
    height: 50px;
    border-bottom: 1px solid #ccc;
}
.my-info table th:first-of-type,
.my-info table td:first-of-type{
    width: 30%;
}
.my-info table td{
    padding-left: 10px;
    height: 60px;
    border-bottom: 1px solid #ddd;
}

.my-info .icon-wrap{
    width: 260px;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}
.my-info a{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 112px;
    height: 112px;
    border: 2px solid #ccc;
    padding: 20px 0;
    color: orange;
}
.my-info a i{
    font-size: 40px;
    color: #000;
}


button{

    border-radius: 4px;
    border: none;
    cursor: pointer;
    background: none;
}   
button.add{
    position: absolute;
    top: -34px;
    right: 0;
}
button.add, button.cancel{
    border: 1px solid #ddd;
    padding:4px 12px ;
}

button.save{
    background-color: #ff8800;
    color: #fff;
    padding: 4px 12px;
    border: 1px solid #e07b00;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}
button.delete{
    background: #000;
    color:#fff;
    padding: 4px 12px;
}
button.remove{
    background: red;
    color:#fff;
    padding: 4px 12px;
    
}

.form_area{
    display: flex;
    gap: 2%;
    justify-content: center;
}
.form-tax{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 30%;
    position: relative;
}

.input_area{
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #000;
    border-bottom: 1px solid #ddd;
}
.input_area dt{
    width: 30%;
}
.input_area dd{
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.input_area dt ,.input_area dd{
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}
.input_area input{
    width: 100%;
    outline: none;
    border: 1px solid #ddd;
    padding: 5px 10px;
    border-radius: 5px;
}
 .input_area input.postcode{
    width: 50%;
}
 .input_area input.postcode+button{
    background: #000;
    color: #fff;
    flex-grow: 1;

}
.form-tax .notice{
    color: #f00;
}
.btn_wrap{
    display: flex;
    gap: 10px;
    justify-content: end;
}


.title-wrap{
    display: flex;
    justify-content: space-between;
    flex: 1;

}


.title-wrap a{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid #ccc;    
    width: 30%;
    aspect-ratio: 5/3;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    font-size: 20px;
    font-weight: 600;
}

.title-wrap a span{
    font-size: 14px;
    font-weight: 400;
}

.card-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 36px;
    overflow: hidden;
}

.card-wrap a{
    width: calc((100% - 72px)/5);
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #000;
    position: relative;
}
.card-wrap .card-desc {
    position: absolute;
    width:100%;
    height:100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
   
    text-align: center;
    opacity: 0;

    white-space: normal; /* 줄바꿈 허용 */
}

.card-wrap a:hover .card-desc{

    opacity: 1;
}
.card-wrap .icon-cover{
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: center;
}
.card-wrap .icon-cover img{
    width:100px;
    height: 100px;

}
.card-wrap a:hover > .card-bg{
    filter: brightness(1);
}

.card-wrap span{
    font-size: 18px;
    color:#000;
    font-weight: 500;
}




header li{
    display: flex;
    gap: 10px;
    align-items: center;
}

.booth_design-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 18px;   
}

.booth_design-wrap a{
    width: calc((100% - 54px)/4);
    aspect-ratio: 1.6/1;
    border-radius: 5px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.booth_design-wrap a.save_item {
    border: 2px solid #FF8722;
    background: #f7f7f7;
    color: #FF8722 !important;
    font-weight: 700;
}

.booth_info-wrap{
    position: relative;
    margin-bottom: 36px;
}
.booth-info{
    width: calc(100% - 260px);
    overflow-y: auto;
    overflow: auto; /* 또는 scroll */
    scrollbar-width: none;      /* Firefox */
    -ms-overflow-style: none;   /* IE, Edge */    
}
.booth-info::-webkit-scrollbar {
    display: none;              /* Chrome, Safari */
}
.booth-info .booth-box{
    
    display: flex;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    align-items: center;
}
.booth-info .booth-box-img{
    width: 20%;
    aspect-ratio: 1/1;
    border-right: 1px solid #ddd;
    display: block;

}
.booth-info .booth-box-img img{
    width: 100%;
    height: 100%;
    display: block;
}
.booth-info .booth-description{
    padding: 20px;
}
.booth-info .booth-description p{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.booth-info .booth-description ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.info-list{
    top: 0;
    right: 0;
    position: absolute;
    width: 260px;
    padding: 0 10px;
}
.info-list ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.info-list ul li{
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
}

.info_box{
    display: flex;
    align-items: stretch;
}
.info_box .info-desc{
    padding: 10px;
    flex: 1;
    
}

.info_box .info-date{
    aspect-ratio: 1 / 1;
    height: auto;
    border: 1px solid #ddd;
}


@import "./layout.css";