/* License Checker Premium Styles */
.lc-container {
    font-family: 'Inter', 'Roboto', sans-serif;
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
}

.lc-search-box {
    padding: 20px;
    box-shadow: none;
    text-align: center;
}

.lc-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.lc-subtitle {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}

.lc-form {
    margin-bottom: 30px;
}

.lc-input-group {
    display: flex;
    position: relative;
    box-shadow: none;
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    border: 2px solid #cbd5e1; /* Added visible border */
    transition: all 0.3s ease;
}

.lc-input-group:focus-within {
    border-color: #3b82f6;
    box-shadow: none;
}

#lc-license-number {
    flex: 1;
    border: none;
    padding: 16px 20px;
    font-size: 16px;
    color: #334155;
    background: transparent;
    outline: none;
    box-shadow: none;
    width: 100%;
}

#lc-license-number::placeholder {
    color: #94a3b8;
}

.lc-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    padding: 0 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.lc-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.lc-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.lc-loader {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.lc-result-wrapper {
    text-align: left;
    margin-top: 30px;
}

.lc-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: none;
    border: 1px solid rgba(226, 232, 240, 0.8);
    animation: slideUpFade 0.4s ease forwards;
}

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

.lc-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.lc-card-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.lc-icon-check, .lc-icon-error {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}

.lc-success .lc-icon-check {
    background: #dcfce7;
    color: #16a34a;
}

.lc-success h3 {
    color: #16a34a;
}

.lc-error .lc-icon-error {
    background: #fee2e2;
    color: #dc2626;
}

.lc-error h3 {
    color: #dc2626;
}

.lc-data-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #e2e8f0;
}

.lc-data-row:last-child {
    border-bottom: none;
}

.lc-label {
    color: #64748b;
    font-weight: 500;
    font-size: 15px;
}

.lc-value {
    color: #1e293b;
    font-weight: 600;
    font-size: 15px;
    text-align: right;
}

.lc-highlight {
    background: #f8fafc;
    margin: 10px -15px;
    padding: 15px;
    border-radius: 12px;
    border-bottom: none;
}

.lc-highlight .lc-label {
    color: #0f172a;
}

.lc-highlight .lc-value {
    color: #3b82f6;
    font-size: 16px;
}

.lc-msg {
    color: #475569;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.lc-msg strong {
    color: #1e293b;
}

.lc-msg-sub {
    color: #94a3b8;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .lc-container {
        padding: 10px;
        margin: 20px auto;
    }
    .lc-search-box {
        padding: 20px;
        border-radius: 16px;
    }
    .lc-title {
        font-size: 22px;
    }
    .lc-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .lc-input-group {
        flex-direction: column;
        border: none;
        background: transparent;
        overflow: visible;
        gap: 16px;
    }
    #lc-license-number {
        border-radius: 12px;
        border: 2px solid #cbd5e1;
        background: #fff;
        padding: 14px;
        text-align: center;
    }
    #lc-license-number:focus {
        border-color: #3b82f6;
    }
    .lc-btn {
        padding: 16px;
        border-radius: 12px;
        width: 100%;
    }
    .lc-card {
        padding: 20px;
        border-radius: 16px;
    }
    .lc-card-header {
        flex-direction: column;
        text-align: center;
        padding-bottom: 15px;
    }
    .lc-icon-check, .lc-icon-error {
        margin-right: 0;
        margin-bottom: 12px;
    }
    .lc-data-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
    }
    .lc-value {
        text-align: left;
        margin-top: 4px;
    }
    .lc-highlight {
        padding: 12px;
        margin: 10px -10px;
    }
}
