/* Global Reset and Layout */
.tcv-wrapper {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.tcv-form {
    display: flex;
    flex-wrap: wrap; /* Ensure responsiveness on small screens */
    align-items: stretch;
    width: 100%;
}

.tcv-input-field {
    min-width: 200px; /* Minimum width for mobile */
    padding: 14px 18px;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.tcv-input-field:focus {
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.tcv-submit-btn {
    min-width: 120px;
    border: none;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.1s active, opacity 0.2s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.tcv-submit-btn:hover {
    filter: brightness(1.1);
}

.tcv-submit-btn:active {
    transform: scale(0.98);
}

/* Result Styles */
.tcv-result-card {
    margin-top: 24px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    animation: tcvFadeIn 0.3s ease-out;
}

@keyframes tcvFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Mobile Tweaks */
@media (max-width: 600px) {
    .tcv-form {
        flex-direction: column;
    }
    .tcv-input-field, .tcv-submit-btn {
        flex: 1 0 100% !important;
        width: 100%;
    }
}