body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url('/img/sell/sellback2.png') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff;
    box-sizing: border-box; /* 전체 박스 크기를 포함하도록 설정 */
}
.login-container {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    box-sizing: border-box; /* 컨테이너 크기 초과 방지 */
}

.login-container h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #F78DA7;
}

.login-container .login-info {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column; /* 입력 필드와 레이블을 세로로 정렬 */
    gap: 5px; /* 필드 간 간격 */
    color: #F78DA7;
}
.login-container .login-info input {
    width: 100%; /* 입력 필드가 부모 컨테이너에 맞춰지도록 설정 */
    padding: 10px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    box-sizing: border-box; /* 입력 필드 크기 초과 방지 */
}
.login-container .login-info input:focus {
    outline: none;
    box-shadow: 0 0 5px #007BFF;
}
.login-container .login-button {
    width: 100%; /* 버튼 크기를 컨테이너에 맞춤 */
    padding: 10px;
    background-color: #f6a06e;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.footer {
    text-align: center;
    margin-top: 10px;
    font-size: 12px;
    color: #F78DA7;
}


/* 팝업 스타일 */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s;
}
.popup {
    background: #fff;
    color: #000;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 300px;
    width: 80%;
}
.popup h2 {
    margin-top: 0;
}
.popup p {
    margin: 10px 0;
}
.popup button {
    background-color: #F78DA7;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}
.popup-overlay.active {
    visibility: visible;
    opacity: 1;
}

/* 리스트 컨테이너 */
.content {
    background-color: #ffffff50;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    box-sizing: border-box;
}

.content h1 {
    font-size: 18px;
    margin: 0 0 20px;
    text-align: center;
    color: #F78DA7;
}

.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
}

.checkbox-group .couponList {
    max-height: 180px;
    overflow: auto;
}

/* 버튼 스타일 */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
}

.button.cream {
    background-color: #f6a06e;
    color: #fff;
}

.button.violet {
    background-color: #d59fde;
    color: #fff;
}

.button.indigo {
    background-color: #1E1671;
    color: #fff;
}

.button.white {
    background-color: #fff;
    color: #333;
    border: 1px solid #ccc;
}

.button.gray {
    background-color: #C8C8C8;
    color: #fff;
}

.no-data{
    text-align: center;
    color: #666;
    font-size: 14px;
    border: 1px solid #666;
    padding: 10px;
    border-radius: 5px;
}

/* 사용처 선택 */
.total{
    color: #333;
    text-align: center;
    font-size: 17px;
    font-weight: bold;
}

.total span {
    color : #D56060;
}

.select-group {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
    color : #333;
}

.select-group h4{
    margin: 10px;
}

.select-group select{
    width: 20%;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.select-group input {
    width: 20%;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
    letter-spacing: 0.25rem;
}

/* 매입처 정보 */
.buyer-info {
    border: 2px solid #6c757d ; /* 테두리 색상 */
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    margin: 40px 0 20px;
    background-color: #f9f5f0 ; /* 연한 배경색 */
    position: relative;
    display: none;
}

.buyer-info.on{
    display: block;
}

.buyer-info .logo-wrapper{
    background-color: #ffffff;
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    border-radius: 50%;
    border: 2px solid #333;
    padding: 5px;
    width: 50px;
    height: 50px;
}
.usage-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.company-name {
    font-size: 16px;
    font-weight: bold;
    color: #2c2c2c;
    margin: 15px 0;
}

.customer-service {
    font-size: 14px;
    font-weight: normal;
    color: #2c2c2c;
    margin: 5px 0;
}

.instructions {
    font-size: 12px;
    color: #2c2c2c;
    line-height: 1.5;
}
