.dental-wrt-container {
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.dental-wrt-search-form {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.dental-wrt-form-title {
    color: #35969f;
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.dental-wrt-form-group {
    margin-bottom: 15px;
}

.dental-wrt-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.dental-wrt-input {
    width: 100% !important;
    padding: 12px 15px !important;
    border: 1px solid #ddd !important;
    border-radius: 5px !important;
    font-size: 16px !important;
    box-sizing: border-box !important;
    transition: border-color 0.3s !important;
}

.dental-wrt-input:focus {
    border-color: #35969f;
    outline: none;
    box-shadow: 0 0 0 1px #35969f;
}

.dental-wrt-button {
    background-color: #35969f;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    font-weight: 500;
    transition: background-color 0.3s;
}

.dental-wrt-button:hover {
    background-color: #135e96;
}

.dental-wrt-result {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dental-wrt-result-title {
    color: #35969f;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.dental-wrt-result-item {
    display: flex;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.dental-wrt-label {
    flex: 0 0 150px;
    font-weight: 500;
    color: #555;
}

.dental-wrt-value {
    flex: 1;
    color: #333;
    font-weight: 400;
}

.dental-wrt-expire {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #eee;
}

.dental-wrt-expire .dental-wrt-label,
.dental-wrt-expire .dental-wrt-value {
    font-weight: 600;
    color: #e44d26;
}

.dental-wrt-not-found {
    background-color: #fff9f9;
    border-left: 4px solid #e35d6a;
    padding: 15px 20px;
    border-radius: 5px;
    color: #333;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Responsive CSS */
@media screen and (max-width: 768px) {
    .dental-wrt-search-form,
    .dental-wrt-result {
        padding: 20px 15px;
    }
    
    .dental-wrt-form-title {
        font-size: 20px;
    }
    
    .dental-wrt-result-item {
        flex-direction: column;
        margin-bottom: 15px;
    }
    
    .dental-wrt-label {
        flex: 0 0 100%;
        margin-bottom: 5px;
    }
    
    .dental-wrt-value {
        flex: 0 0 100%;
    }