/* Import a modern font (optional) */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');

/* Apply the font to the entire form and results */
body, .dac-form, .dac-result {
    font-family: 'Roboto', sans-serif;
}

/* Container for the search form */
.dac-form {
    width: 80%;
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.dac-form:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Label for the search field */
.dac-form label {
    display: block;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #333;
}

/* Input field: bordered and with rounded corners */
.dac-input {
    width: 100%;
    padding: 14px 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-bottom: 20px;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.dac-input:focus {
    border-color: #0073e6;
    box-shadow: 0 0 8px rgba(0, 115, 230, 0.2);
    outline: none;
}

/* Modern verification button */
.dac-button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    background-color: #000000;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.dac-button:hover {
    background-color: #0a0909;
    transform: translateY(-2px);
}

/* Container for the verification result */
.dac-result {
    width: 80%;
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

/* Success message style */
.dac-valid {
    color: #2ecc71;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;
}

/* Error message style */
.dac-invalid {
    color: #e74c3c;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;
}

/* Detail paragraphs in the result container */
.dac-result p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #444;
}

.dac-separator {
    border-top: 2px solid #ddd;
    margin: 20px 0;
}

.dac-company-info {
    font-size: 14px;
    color: #666;
}

.dac-logo {
    max-width: 150px;
    margin-top: 10px;
}