.reg-search-box {
    margin: 30px auto;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.reg-search-box input {
    flex: 1;
    padding: 12px 14px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 6px 0 0 6px;
    outline: none;
}

.reg-search-box button {
    padding: 12px 20px;
    border: none;
    background: #e85d04;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}
.reg-search-box button:hover {
    background: #d9480f;
}

#reg_result {
    margin-top: 25px;
    text-align: center;
}

#reg_result h3 {
    margin-bottom: 15px;
}

.reg-table {
    margin: 0 auto;
    border-collapse: collapse;
    width: 100%;
    max-width: 500px;
    font-size: 16px;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.reg-table th {
    text-align: left;
    background: #f8f9fa;
    padding: 12px;
    width: 35%;
    border: 1px solid #ddd;
    font-weight: bold;
}
.reg-table td {
    padding: 12px;
    border: 1px solid #ddd;
}