


.login-box {
    width: 300px;
    margin: 30px auto;
    padding: 20px;
    border: 2px solid wheat;
    border-radius: 10px;
    box-shadow: 2px 2px 10px #ccc;
}

.session-container {
    display: flex;
    justify-content: space-around;
    margin: 40px;
}

.session-box {
	
    width: 30%;
    background-color: #f2f2f2;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 1px 1px 8px #bbb;
    text-align: center;
}

body {
    font-family: 'Arial', 'sans-serif';
    padding: 0;
    margin: 0;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}
/*이미지*/
.background-container {
    position: absolute;
    top: 0;
	left: 0;
    width: 100%;
	height: 100vh;
    display: flex;
	background-image: url('/images/mainback.jpg');
	    background-size: cover;
	    background-position: center;
	    background-repeat: no-repeat;
    z-index: -1;
}

/*로그인 박스*/
.main-content {
    position: relative;
    z-index: 1;
    margin-top: 300px;
	transform: translate(2%, -10%);
}



h1 {
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #3a803d;

    color: white;
}

tr:hover {
    background-color:  #f9f9f9;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
 
.main-layout {
  display: flex;
  width: 90vw;
  max-width: 800px;
  min-height: 70vh;
  margin: 0 auto;
  margin-bottom: 3rem;
  background-color: rgba(255, 255, 255, 0);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0);
  border-radius: 1rem;
  padding-left: 3vw;
  
  overflow: hidden;
  z-index: 1;
}

/* 왼쪽 2단 박스 */
.left-section {
  	
  flex: 3;
  display: flex;
  flex-direction: column;
  min-height: 60vh;
}



.top-box {	
  flex: 1;
  padding: 6vh 4vw;
  /* 필요 시 내용 삽입 */
}

.bottom-box {
  
  padding: 6vh 4vw;
  flex: 1;
  
}

/* 오른쪽 버튼 */
.right-section {
	
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  background-color: transparent;
  
}

.side-button {
	width: 7rem;
  display: block;
  text-align: center;
  font-weight: bold;
  padding: 1rem 0;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  text-decoration: none;
}

