/**
 *
 * You can write your CSS code here, DO NOT touch the default JavaScript file
 * because it will make it harder for you to update.
 * 
 */

/*# sourceMappingURL=custom.css.map */

 .dataTables_wrapper label input{border: 1px solid #6777ef;
        border-radius: 24px;
        padding: 10px;
 }
 
.red-text {
    color: red;
    font-weight: bold;
}

tbody .action li{
    list-style: none;
}

.popup-add-service {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background:#00000055;
}

.popup-content-add-service {
    position: relative;
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    border-radius: 5px;
    width: 550px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.tab-button {
    background-color: #f1f1f1;
    padding: 10px;
    cursor: pointer;
    border: none;
}

.tab-button.active {
    background-color: #007bff;
    color: white;
}

.close-btn-add-service {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: #aaa;
    cursor: pointer;
}

.submit-button-add-service {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.submit-button-add-service:hover {
    background-color: #218838;
}

.play_profile_img_users {
    margin-bottom: 20px;
}

.play_profile_img_users ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Mặc định 4 cột */
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.play_profile_img_users ul li {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.play_profile_img_users ul li img {
    width: 100%;
    object-fit: cover;
}

.play_user_old ,.play_user_new{
    padding: 5px;
    display: flex;
    border-radius: 6px;
    background: #000;
    justify-items: center;
    justify-content: center;
    color: #fff;
}
.play_user_new{
    background:#333;
}

.accordion {
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 100%;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  background-color: #f8f9fa;
  padding: 15px;
  cursor: pointer;
  font-weight: bold;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 15px;
  background-color: #fff;
}

.accordion-body p {
  margin: 15px 0;
}

.color-price{
    color: red;
    font-size: 20px;
    font-family: 'dashicons';
}


 @media (max-width: 490px) {
    .play_profile_img_users ul {
        grid-template-columns: repeat(2, 1fr);
    }
}
