/* Custom styling for the jQuery UI Dialog */
.custom-dialog-style {
	position:fixed !important;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    font-family: Arial, sans-serif;
}

/* Styling for the form elements */
.custom-dialog-style label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.custom-dialog-style select,
.custom-dialog-style input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 16px;
}

/* Styling for the Save button */
.custom-dialog-style .ui-dialog-buttonset button {
    padding: 8px 15px;
    font-size: 14px;
    background-color: #007bff;
    border: none;
    border-radius: 3px;
    color: #ffffff;
    cursor: pointer;
}

.custom-dialog-style .ui-dialog-buttonset button:hover {
    background-color: #0056b3;
}
.custom-dialog-style .ui-dialog-titlebar{
    background: none; /* Remove background styling */
    border: none; /* Remove border */
    font-size: 20px;
    font-weight: bold;
    margin: 0; /* Reset margin */
    padding: 0; /* Reset padding */
    color:black;
}
/* Styling for the close button */
.custom-dialog-style .ui-dialog-titlebar-close {
    background: none; /* Remove background styling */
    border: none; /* Remove border */
    box-shadow: none; /* Remove box-shadow */
}

.custom-dialog-style #shipping-city{
    font-size:16px;
}

/* Remove overlay background */
.ui-widget-overlay {
    /*background:transparent !important;*/
    opacity:.3;
}

/* Set black color for the close button's icon */
.ui-dialog-titlebar-close .ui-icon {
    background-image: none !important;
    color: black !important;
    font-size: 16px;
    opacity: 1 !important;
    text-align: center;
    text-indent: 0;
}

/* Set a custom close button icon */
.ui-dialog-titlebar-close .ui-icon::before {
    content: "\2715"; /* Unicode for "multiplication X" symbol */
    font-size: 16px;
    line-height: 1;
    font-weight: bold;
    display: block;
    width: 100%;
}

/* custom-button.css */
.custom-button-container {
    display:none;
    position: fixed;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    text-align: right;
    z-index: 9999; /* Adjust the z-index as needed */
}

.custom-button {
    background-color: #0073aa;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 60px;
    height:50px;
    font-size:13px;
    transition: width 1s;
   
}

.custom-button:hover {
    width:180px;
    font-size:15px;
    padding-left: 20px;
    padding-right: 30px;
    background-color: #0073aa;
    color:white;
    overflow:hidden;

}
.custom-button-higlight{
    width:180px;
    font-size:15px;
    padding-left: 20px;
    padding-right: 30px;
    background-color: #0073aa;
    color:white;
    overflow:hidden;
}

.success-message {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
    padding: 10px;
    margin-bottom: 10px;
    text-align: center;
}
