/* assets/css/pincode-checker.css */

.ithink-result {
    margin-bottom: 20px;
}

.ithink-pincode-checker-wrapper {
    margin: 20px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.ithink-pincode-form h3 {
    margin-top: 0;
    color: #333;
    font-size: 18px;
    margin-bottom: 15px;
}

.ithink-form-group {
    margin-bottom: 15px;
}

.ithink-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.ithink-form-group input {
    width: 100%;
    max-width: 200px;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.ithink-form-group input:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.3);
}

#ithink-check-btn {
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#ithink-check-btn:hover:not(:disabled) {
    background-color: #005a87;
    border-color: #005a87;
}

#ithink-check-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.ithink-result {
    margin-top: 15px;
    animation: slideDown 0.3s ease;
}

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

.ithink-success,
.ithink-error,
.ithink-warning {
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.ithink-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.ithink-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.ithink-warning {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
}

.ithink-success span,
.ithink-error span,
.ithink-warning span {
    margin-right: 10px;
    font-weight: bold;
}

.ithink-success strong,
.ithink-error strong,
.ithink-warning strong {
    margin-right: 5px;
}

.ithink-success ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.ithink-success li {
    margin: 5px 0;
    font-size: 13px;
    line-height: 1.5;
}

/* Responsive design */
@media (max-width: 600px) {
    .ithink-pincode-checker-wrapper {
        padding: 15px;
    }
    
    .ithink-form-group input {
        max-width: 100%;
    }
    
    #ithink-check-btn {
        width: 100%;
        max-width: 100%;
    }
}