/* ProductHome-custom-block start */

/* General Styles for the Custom Block */
.producthome-custom-block {
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

/* Styling for TextControl and TextareaControl */
.producthome-custom-block .components-base-control {
    margin-bottom: 16px; /* Space between form elements */
}

.producthome-custom-block label {
    font-size: 14px;
    font-weight: bold;
    text-transform: none;;
    color: #333;
}

.producthome-custom-block input, .producthome-custom-block textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
}

/* Styling for the Image Section */
.producthome-custom-block-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 2px dashed #ddd; /* Light dashed border for the image area */
    padding: 20px;
    border-radius: 8px;
    background-color: #fafafa;
}

.producthome-custom-block-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 12px;
}

/* Button Styling */
.producthome-custom-block .components-button {
    background-color: #0073aa;
    color: #fff;
    padding: 10px 16px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.producthome-custom-block .components-button:hover {
    background-color: #005c8a;
}

.producthome-custom-block .components-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.5);
}

/* ProductHome-custom-block end */


/* productdetaildisplay-custom-block start */

/* General Styles for the Custom Block */
.productdetaildisplay-custom-block {
    display: flex;
    flex-direction: column;
    gap: 16px; /* Spacing between elements */
    padding: 16px;
    background-color: #f9f9f9; /* Light background for the block */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

/* Styling for TextControl and TextareaControl */
.productdetaildisplay-custom-block .components-base-control {
    margin-bottom: 16px; /* Space between form elements */
}

.productdetaildisplay-custom-block label {
    font-size: 14px;
    font-weight: bold;
    text-transform: none;;
    color: #333;
}

.productdetaildisplay-custom-block input, .productdetaildisplay-custom-block textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
}

/* Styling for the Image Section */
.productdetaildisplay-custom-block-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 2px dashed #ddd; /* Light dashed border for the image area */
    padding: 20px;
    border-radius: 8px;
    background-color: #fafafa;
}

.productdetaildisplay-custom-block-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 12px;
}

/* Button Styling */
.productdetaildisplay-custom-block .components-button {
    background-color: #0073aa;
    color: #fff;
    padding: 10px 16px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.productdetaildisplay-custom-block .components-button:hover {
    background-color: #005c8a;
}

.productdetaildisplay-custom-block .components-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.5);
}

/* productdetaildisplay-custom-block end */