@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic&display=swap');
* {
    font-family: 'NanumSquareNeo-Variable', sans-serif !important;
}

body {
    margin: 0;
    background: #f5f6fa;
    color: #4a4a4a;
    padding: 20px;
}

.container {
    max-width: 550px;
    margin: 40px auto;
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(158, 158, 175, 0.15);
    text-align: center;
    box-sizing: border-box;
}

h1 {
    font-size: 26px;
    color: #6c5ce7;
    margin-bottom: 25px;
    font-weight: 800;
}

h2 {
    font-size: 20px;
    color: #2d3436;
}

h3 {
    font-size: 24px;
    color: #fd79a8;
    margin-top: 5px;
    font-weight: bold;
}

hr {
    border: 0;
    height: 1px;
    background: #e8e8ed;
    margin: 20px 0;
}

input, select {
    width: 85%;
    max-width: 300px;
    padding: 12px 15px;
    font-size: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    outline: none;
    transition: all 0.2s ease;
    background: #fafafa;
    margin-bottom: 5px;
}

input:focus, select:focus {
    border-color: #a29bfe;
    background: #fff;
    box-shadow: 0 0 8px rgba(162, 155, 254, 0.2);
}

button {
    width: 85%;
    max-width: 220px;
    padding: 12px 0;
    font-size: 15px;
    font-weight: bold;
    color: white;
    background: #6c5ce7;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(108, 92, 231, 0.2);
    transition: all 0.2s ease;
    margin: 5px 0;
}

button:hover {
    background: #5b4cc4;
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(108, 92, 231, 0.3);
}

button:active {
    transform: translateY(1px);
}

button[onclick*="showMainPage"], 
button[onclick*="openAdmin"],
button[onclick*="openUserManager"] {
    background: #eeecef;
    color: #616161;
    box-shadow: none;
}
button[onclick*="showMainPage"]:hover, 
button[onclick*="openAdmin"]:hover,
button[onclick*="openUserManager"]:hover {
    background: #e2e0e4;
}


table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 15px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e8e8ed;
}

th {
    background: #a29bfe;
    color: white;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
}

td {
    padding: 12px;
    font-size: 14px;
    background: #ffffff;
    border-bottom: 1px solid #f1f1f5;
    color: #555;
}

tr:last-child td {
    border-bottom: none;
}


div[style*="border:1px solid gray"] {
    border: none !important;
    background: #f8f9fa;
    border-radius: 16px;
    padding: 15px !important;
    margin: 15px 0 !important;
    box-shadow: inset 0 0 0 1px #e9ecef;
}

.logRow:hover {
    background-color: #fcfbfe;
}

