body {
        /*min-height: 90vh;
        background: #f8f9fa; /* 배경 색상 설정 */
        /*
        background: -webkit-gradient(linear, left bottom, right top, from(#92b5db), to(#1d466c));
        background: -webkit-linear-gradient(bottom left, #92b5db 0%, #1d466c 100%);
        background: -moz-linear-gradient(bottom left, #92b5db 0%, #1d466c 100%);
        background: -o-linear-gradient(bottom left, #92b5db 0%, #1d466c 100%);
        background: linear-gradient(to top right, #92b5db 0%, #1d466c 100%);
        */

    }

/*
.input-form {
        max-width: 680px;

        margin-top: 80px;
        padding: 32px;

        background: #fff;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
        -moz-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15)
}
*/

body.blue-body {
        background: linear-gradient(to right, #4A91E3, #27496D); /* 조화로운 중간 톤의 푸른색 그라데이션 배경 */
        /*height: 80vh;
        /*color: white; /* 텍스트 색상을 흰색으로 변경 */
  }


body.main-body {
    background: linear-gradient(to right, #4A91E3, #27496D); /* 배경 그라데이션 */
    color: white;
    /*height: 80vh; /* 전체 높이를 화면에 맞춤 */
    /*font-family: 'Playfair Display', serif; /* 고전적인 느낌의 폰트 */
    
    /*display: flex;
    /*align-items: center; /* 수직 중앙 정렬 */
    /*justify-content: center; /* 수평 중앙 정렬 */
}

.main-heading {
    height: 90vh; /* 높이를 80%로 조정 */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 100px; /* 폰트 크기를 72px로 확대 */
    font-weight: bold;
    text-align: center;

    color: white;

    /*flex: 0 1 auto; /* 자동으로 크기 조절 */
    margin-top: 10px; /* 타이틀을 더 위로 올림 */
    margin-bottom: 20px; /* 타이틀과 카드 사이의 간격 감소 */
}

.main-container {
    min-height: 95%; /* 컨테이너 최소 높이 100% */
    display: flex;
    flex-direction: column; /* 컨테이너 요소를 컬럼 방향으로 배치 */
    justify-content: center; /* 컨텐츠와 푸터 사이에 공간 배분 */
}

.main-title {
    /*height: 90vh; /* 높이를 80%로 조정 */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 100px; /* 제목 크기 */
    margin-bottom: 50px; /* 제목 아래 여백 */
    font-family: 'Playfair Display', serif; /* 고전적인 느낌의 폰트 */
}

.main-card {
    background-color: #f8f9fa; /* 연한 회색 배경 */
    /*width: 350px;*/
    padding: 20px;
    border-radius: 10px;
    margin: 10px;
    color: #333; /* 진한 회색 텍스트 */
}

.main-card-container {
    display: flex;
    justify-content: center; /* 카드를 중앙에 배치 */
    flex-wrap: wrap; /* 화면 너비에 따라 카드를 적절히 줄바꿈 */
    text-decoration: none; /* 링크에 밑줄 없애기 */
    transition: transform 0.3s ease; /* 변환 효과를 부드럽게 */
}

.main-card:hover {
    transform: scale(1.05); /* 카드를 5% 크게 */
    text-decoration: none; /* 호버 시에도 밑줄 없애기 */
    background-color: #e2e2e2; /* 호버 배경 색상 변경 */
    color: #333; /* 진한 회색 텍스트 */
}

.card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card-header {
    background-color: #f8f9fa; /* 카드 헤더 배경 색상 */
    /*border-bottom: none;*/ /* 카드 헤더 하단 테두리 제거 */
    font-size: 18px; /* 제목 폰트 크기 */
    font-weight: bold; /* 폰트 굵기 */
    text-align: left; /* 텍스트 중앙 정렬 */
    padding: 10px; /* 패딩 설정 */
}

.info-title {
    font-weight: bold;
    text-align: left; /* 제목은 왼쪽 정렬 */
    color : #777;
}
.info-small {
    font-size: 14px; 
    text-align: left; /* 제목은 왼쪽 정렬 */
    color : #777;
}
.info-content {
    text-align: right; /* 내용은 오른쪽 정렬 */
}

.info-box {
    border: 1px solid #ccc; /* 1px 테두리 추가 */
    border-radius: 8px; /* 모서리 둥글게 */
    margin-bottom: 20px; /* 박스 간 간격 */
    padding: 20px; /* 내부 여백 */
    width: 95%; /* 박스 너비를 확장 */
    max-width: 800px; /* 최대 너비 설정 */
    margin-left: auto; /* 중앙 정렬을 위한 설정 */
    margin-right: auto; /* 중앙 정렬을 위한 설정 */
}

.row {
    margin-bottom: 10px; /* 각 행의 하단 여백 */
}

.big-card {
        background-color: white; /* 카드 배경을 완전히 불투명한 흰색으로 설정 */
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        color: black;
    }

body, html {
        height: 100%; /* 페이지 높이를 100%로 설정 */
    }


    .page-header {
        /*margin-top: 40px;*/
        margin-bottom: 40px;
        text-align: center;
        /*font-size: 28px; /* 페이지 제목의 폰트 크기 */
        /*font-weight: bold; /* 폰트 굵기 */
    }

.container {
        min-height: 100%; /* 컨테이너 최소 높이 100% */
        display: flex;
        flex-direction: column; /* 컨테이너 요소를 컬럼 방향으로 배치 */
        justify-content: space-between; /* 컨텐츠와 푸터 사이에 공간 배분 */
    }

    
.footer2 {
        width: 100%;
        background-color: #f8f9fa;
        color: black;
        text-align: center;
        margin-top: 50px;
        padding: 10px 0;
        font-size: 16px;
        border-top: 1px solid #dee2e6;
    }

    footer {
        flex-shrink: 0;
        background-color: #f8f9fa;
        color: black;
        text-align: center;
        padding: 10px 0;
    }

    

/* commonm */

.dotted-line {
    border-top: 1px dotted #ccc; /* 점선 구분선 스타일 */
}

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

.form-section {
    margin-top: 10px;
}

/* Shop Login */

.signup-info-title {
    font-weight: bold; /* 제목을 진하게 설정 */
    margin-top: 30px; /* 제목 위의 여백 */
    font-size: 15px; /* 제목 폰트 크기 설정 */
}
.signup-info-text {
    color: #666; /* 내용 텍스트 색상 */
    margin-bottom: 30px; /* 내용 아래의 여백 */
    font-size: 14px; /* 내용 폰트 크기 설정 */
}

.section-title {
    margin-top: 30px;
    margin-bottom: 15px;

}

.section-title2 {
    margin-top: 50px;
    margin-bottom: 15px;

}

.section-btn {
    margin-top: 30px;
    margin-bottom: 15px;
}

/* item */

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px; /* Adds spacing between the menu header and the buttons */
}

.item-price {
    color: #007bff; /* 파란색으로 가격 표시 */
}

.categoty-set-title{
    margin-top: 50px;
}

.pocket-btn {
    margin-bottom: 20px;
}

/* records */

.records-item {
    margin-top: 20px;
}

.clickable-icon {
    cursor: pointer; /* 마우스 포인터 변경 */
}

a{
    text-decoration-line: none;
}

.container{ 
	padding-top:50px
}


@media (min-width: 992px) { /* 데스크톱 환경에서 */
    .main-card-container {
        flex-direction: row; /* 카드를 좌우로 배치 */
    }
}
@media (max-width: 991px) { /* 모바일 환경에서 */
    .main-card-container {
        flex-direction: column; /* 카드를 상하로 배치 */
    }

}
/* 모바일 화면에서 배경색 제거 */
@media (max-width: 768px) {
    body.blue-body {
        background: none; /* 모바일 화면에서 배경 그라데이션 제거 */
        background-color: #f8f9fa; /* 모바일 화면에서 사용할 배경색 설정 */
    }

    body.main-body {
        background: none; /* 모바일 화면에서 배경 그라데이션 제거 */
        background-color: #f8f9fa; /* 모바일 화면에서 사용할 배경색 설정 */
    }

    .card {
        background: none; /* 모바일 화면에서 카드 배경 제거 */
        box-shadow: none; /* 그림자 제거 */
        border: none; /* 테두리 제거 */
        padding: 0;
    }

    .main-heading {
        font-size: 72px; 
        color: black;
    }

    .main-title {
        font-size: 70px; /* 제목 크기 */
        color: #333;
    }

    .main-card {
        background-color: #91b8e4; /* 연한 회색 배경 */
        /*width: 350px;*/
        /*padding: 20px;
        border-radius: 10px;
        margin: 10px;*/
        color: #333; /* 진한 회색 텍스트 */
    }

    .main-card:hover {
        transform: scale(1); /* 카드를 5% 크게 */
        text-decoration: none; /* 호버 시에도 밑줄 없애기 */
        background-color: #e2e2e2; /* 호버 배경 색상 변경 */
        color: #333; /* 진한 회색 텍스트 */
    }

    .item-button-right-align {
        display: flex;
        justify-content: end; /* Aligns the button group to the right */
    }
}




/*
.footer{
/*position: absolute;
padding-top: 30px;
bottom: 0;
width: 100%;
/* Set the fixed height of the footer here 
height: 60px;
background-color: ababab;
}
/*