@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700&display=swap');

body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: #f0f9f4; /* Light mint green background */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.container {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 600px;
}

h1 {
    text-align: center;
    color: #1e8449; /* Dark green */
    margin-bottom: 30px;
}

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

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #27ae60; /* Primary green on focus */
}

button {
    width: 100%;
    padding: 15px;
    background-color: #27ae60; /* Primary green */
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #229954; /* Darker green on hover */
}

#result-container {
    margin-top: 30px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

thead {
    background-color: #d4efdf; /* Light green for table header */
}

th, td {
    padding: 12px 15px;
    text-align: right;
    border-bottom: 1px solid #ddd;
}

th {
    font-weight: 700;
    color: #1e8449; /* Dark green for header text */
}

td:first-child, th:first-child {
    text-align: center;
}

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

tbody tr:nth-child(even) {
    background-color: #f8fcfb;
}

/* Styles for Partnership Form */
.partnership-btn {
    margin-top: 30px;
    background-color: #cccccc; /* Light gray */
}

.partnership-btn:hover {
    background-color: #bbbbbb; /* Slightly darker gray on hover */
}

#partnership-form-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

#partnership-form-section h2 {
    text-align: center;
    color: #1e8449;
    margin-bottom: 25px;
}

#partnership-form-section .input-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
    resize: vertical; /* Allow vertical resizing */
}

#partnership-form-section .input-group textarea:focus {
    outline: none;
    border-color: #27ae60;
}

#partnership-form-section form button[type="submit"] {
    margin-top: 15px;
    margin-bottom: 10px;
}

.hidden-form-section {
    display: none;
}

.close-btn {
    background-color: #95a5a6; /* A neutral color for close button */
}

.close-btn:hover {
    background-color: #7f8c8d;
}