/* License Manager Frontend Styles */
.lm-lookup-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.lm-lookup-wrapper {
    max-width: 600px;
    width: 100%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.lm-lookup-header {
    text-align: center;
    margin-bottom: 30px;
}

.lm-lookup-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #006b3f;
    margin-bottom: 10px;
}

.lm-lookup-header p {
    color: #666;
    font-size: 16px;
}

.lm-lookup-form-section {
    margin-bottom: 30px;
}

.lm-form-group {
    margin-bottom: 25px;
}

.lm-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.lm-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.lm-input:focus {
    outline: none;
    border-color: #006b3f;
    box-shadow: 0 0 0 3px rgba(0, 107, 63, 0.1);
}

.lm-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #006b3f 0%, #004d2e 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 107, 63, 0.3);
}

.lm-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 107, 63, 0.4);
    background: linear-gradient(135deg, #004d2e 0%, #006b3f 100%);
}

.lm-submit-btn:active {
    transform: translateY(0);
}

.lm-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.lm-result-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.lm-result-content h3 {
    color: #006b3f;
    margin-bottom: 20px;
    text-align: center;
}

.lm-image-container {
    text-align: center;
    margin-bottom: 20px;
}

.lm-license-image {
    max-width: 100%;
    height: auto;
    border: 3px solid #d4af37;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.lm-download-section {
    text-align: center;
}

.lm-download-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #d4af37 0%, #e4c560 100%);
    color: #004d2e;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.lm-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: #004d2e;
}

.lm-error-message {
    background: #fee;
    border: 2px solid #d63638;
    color: #d63638;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

@media (max-width: 768px) {
    .lm-lookup-wrapper {
        padding: 30px 20px;
    }
    
    .lm-lookup-header h1 {
        font-size: 26px;
    }
}

