.card-group {
    display: flex;
    /* ใช้ flexbox */
    justify-content: space-between;
    /* เว้นระยะระหว่างการ์ด */
}


.select2-container .select2-selection--single {
    height: 40px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 45px !important;
}

.fixed-bottom {
    position: fixed;
    bottom: 20px;
    /* Adjust as needed */
    right: 20px;
    /* Adjust as needed */
    width: auto;
    /* Let the content decide the width */
    text-align: center;
    width: 8%;
}

.rounded-icon {
    background-color: #0056b3;
    /* Background color */
    color: white;
    padding: 10px 15px;
    /* Adjust padding for a balanced look */
    border-radius: 100px;
    /* Makes it rounded */
    display: flex;
    flex-direction: column;
    /* Stack icon and text vertically */
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Shadow for depth */
    transition: transform 0.3s ease, background-color 0.3s ease;
    /* Smooth hover effects */
    cursor: pointer;
    text-decoration: none;
    /* Remove underline from text */
    width: 70px;
    /* Ensures enough width for the text */
    margin-left: 10px;
}

.rounded-icon i {
    margin-bottom: 5px;
    /* Spacing between icon and text */
    font-size: 22px;
    /* Larger icon size */
}

.rounded-icon:hover {
    transform: scale(1.0);
    /* More noticeable hover enlargement */
    background-color: #32A931;
    /* Darker background on hover */
}

.rounded-icon p {
    margin: 0;
    /* Remove default paragraph margins */
}

#discount_text:readonly {
    border:1px solid #6C757D !important; /* สีข้อความที่ดูเหมือนปิดการใช้งาน */
    border-radius: 2px;
    background: #FDEBD1 !important;
  }