.asas-form-wrapper {
    max-width: 800px;
    margin: 20px auto;
    padding: 30px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    font-family: inherit;
}

/* Public Search Results Styling */
#asas-public-results {
    margin-top: 30px;
    overflow-x: auto;
}

#asas-public-results table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

#asas-public-results th, 
#asas-public-results td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

#asas-public-results th {
    background: #f8f9fa;
    font-weight: bold;
    color: #333;
}

#asas-public-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
    display: none;
    font-weight: bold;
}

#asas-public-message.error {
    background: #fff5f5;
    color: #c53030;
    border: 1px solid #feb2b2;
}

#asas-public-message.info {
    background: #ebf8ff;
    color: #2b6cb0;
    border: 1px solid #bee3f8;
}

.asas-lookup-section {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.asas-input-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.asas-input-group input {
    padding: 10px;
    width: 250px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.asas-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.form-field {
    margin-bottom: 15px;
}

.form-field label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-field input, 
.form-field textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.asas-usul-content {
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 4px;
    margin-bottom: 20px;
}

.asas-form-actions {
    text-align: right;
}

.button.primary {
    background: #0073aa;
    color: #fff;
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.button.primary:hover {
    background: #005177;
}

#asas-form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    display: none;
}

#asas-form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#asas-form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 600px) {
    .asas-form-grid {
        grid-template-columns: 1fr;
    }
}
