﻿.sb-basic-paragraph {
    font-size: 16px;
    margin: 5px;
}
/* Set box sizing to border-box for all elements */
* {
    box-sizing: border-box;
}

/* Style for form labels */
.sb-newProduct-form-label {
    display: block;
    margin-bottom: 5px;
}

/* Style for form inputs */
.sb-newProduct-form-input {
    display: block;
    width: 50%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Style for one-line form inputs */
.sb-newProduct-form-input-oneline {
    display: inline-block;
    width: calc(100% - 70px); /* Subtract cancel icon width */
}

/* Style for cancel icons */
.cancel-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    font-size: 20px;
    color: #ccc;
    cursor: pointer;
}

/* Style for add icon */
.add-icon {
    display: inline-block;
    font-size: 30px;
    color: #ccc;
    cursor: pointer;
}

/* Style for form fields */
.sb-form-field {
    margin-bottom: 20px;
}

/* Style for buy link divs */
.sb-newProduct-buylink {
    margin-bottom: 10px;
    display:flex;
    flex-direction:row;
}

/* Style for SEND button */
button {
    display: block;
    width: 80px;
    padding: 10px;
    margin-top: 20px;
    border: none;
    background-color: #4CAF50;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

/* Style for required fields */
.sb-form-mustfield::before {
    content: "*";
    color: red;
    margin-right: 5px;
}
