
/* أنماط خاصة بموقع ibreg.org */
.ibreg-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 15px;
}

.ibreg-search-card, .ibreg-barcode-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
}

.ibreg-card-header {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 20px 25px;
}

.ibreg-card-header h2 {
    margin: 0;
    font-weight: 600;
    font-size: 1.5rem;
}

.ibreg-card-body {
    padding: 25px;
}

.ibreg-search-form {
    margin-top: 20px;
}

.ibreg-search-form .input-group {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.ibreg-search-form .form-control {
    border: none;
    padding: 15px;
    font-size: 16px;
}

.ibreg-search-form .btn {
    padding: 15px 25px;
    font-weight: 600;
}

.ibreg-image-section {
    text-align: center;
}

.ibreg-barcode-image, .ibreg-product-image {
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 15px;
    background: #fafafa;
    margin-bottom: 20px;
}

.ibreg-image-caption {
    margin-top: 10px;
    font-weight: 500;
    color: #2c3e50;
}

.ibreg-info-section {
    padding: 10px;
}

.ibreg-info-title {
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: 600;
}

.ibreg-info-item {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.ibreg-info-item.full-width {
    width: 100%;
}

.ibreg-info-icon {
    width: 40px;
    height: 40px;
    background: #f5f7fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    color: #3498db;
    font-size: 18px;
}

.ibreg-info-content {
    flex: 1;
}

.ibreg-info-content label {
    display: block;
    font-weight: 600;
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.ibreg-info-content p {
    margin: 0;
    color: #2c3e50;
    font-size: 1.1rem;
    word-break: break-word;
}

.ibreg-actions {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
}

.ibreg-not-found {
    text-align: center;
    padding: 50px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.ibreg-not-found-icon {
    font-size: 5rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.ibreg-not-found h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.ibreg-not-found p {
    color: #7f8c8d;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* تصميم متجاوب */
@media (max-width: 768px) {
    .ibreg-info-item {
        flex-direction: column;
    }
    
    .ibreg-info-icon {
        margin-left: 0;
        margin-bottom: 10px;
    }
    
    .ibreg-card-body {
        padding: 20px 15px;
    }
}