body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Cleaner default font */
    background-color: #f5f7fa; /* Soft background */
    color: #333;
    margin: 0;
    padding: 2rem;
    text-align: center;
}

h1 {
    color: #20252d;
    font-size: 2.5rem;
}

a {
    color: #1a73e8;
    text-decoration: none;
    word-break: break-word;
}

a:hover {
    text-decoration: underline;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.modal textarea {
    width: 100%;
    height: 6em;
    resize: none;
    padding: 0.75rem;
    font-family: inherit;
}
#overlayTextBox {
    display: none;
    position: fixed;
    z-index: 900;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}
.close {
    color: #aaa;
    float: right;
    font-size: 24px;
    cursor: pointer;
}
.close:hover {
    color: black;
}
button {
    background-color: #1a73e8;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    margin: 0.5rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background-color: #155ab6;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}
.info-box {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    margin: 1rem auto;
    width: 100%;
    max-width: 600px;
    text-align: left;
}

.box-width {
    width: 100%;
    max-width: 600px;
}
.info-title {
    font-weight: bold;
    margin-bottom: 5px;
}
label {
    font-weight: bold;
    display: block;
    margin-top: 1rem;
}
input {
    width: 100%;
    padding: 0.75rem;
    margin-top: 4px;
    margin-bottom: 12px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
}
