body {
    font-family: Arial, sans-serif;
}

.bc-link {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding-block: 20px;
    //border-top: 1px solid #ccc;
}

.bc-link a {
    color: #007bff;
    font-weight: bold;
    font-size: 1rem;
}

.container {
    max-width: 850px;
    margin: 50px auto;
    padding: 50px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
    display: inline-block;
    padding-bottom: 10px;
}

.select2-container {
    margin-bottom: 10px;
}

.select2-container .select2-results__option span{
    display: flex;
    align-items: center;
    gap: 10px;
}

.selected-products {
    margin-top: 20px;
}

.selected-products ul {
    list-style-type: none;
    padding: 0;
}

.selected-products li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.btn, .remove-btn {
    padding: 10px 35px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    margin-block: 10px;
    border-radius: 5px;
    font-weight: bold;
    min-width: 225px;
    margin-left: auto;
}

.btn:hover, .remove-btn:hover {
    opacity: 0.7;
}

.remove-btn {
    background-color: #dc3545;
    margin-block: 0;
    min-width: unset;
}

#relatedProductList li {
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: start;
}

#relatedProductList li .product-name{
    display: flex;
    gap: 4px;
}

#response-notice {
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
    display: none;
}

#response-notice.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

#response-notice.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#submit {
    position: relative;
}

#submit .spinner {
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    width: 30px;
    hhight: 30px;
    position: absolute;
}

#product-infos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

#product-infos .info {
    font-size: 0.75rem;
    color: #999;
    font-style: italic;
}

.is-invalid {
    border-color: #dc3545 !important;
}



form#loginForm {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #333;
}

form#loginForm label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

form#loginForm input[type="text"],
form#loginForm input[type="password"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

form#loginForm button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
}

form#loginForm button[type="submit"]:hover {
    background-color: #0056b3;
}