/* Action container */
td .d-flex {
    gap: 12px;
    /* spacing between icons */
    align-items: center;
}

/* Common icon style */
td .d-flex a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

/* Edit icon */
td .d-flex a:nth-child(1) {
    color: #0d6efd;
    background: rgba(13, 110, 253, 0.1);
}

td .d-flex a:nth-child(1):hover {
    background: #0d6efd;
    color: #fff;
}

/* View icon */
td .d-flex a:nth-child(2) {
    color: #198754;
    background: rgba(25, 135, 84, 0.1);
}

td .d-flex a:nth-child(2):hover {
    background: #198754;
    color: #fff;
}

/* Delete icon */
td .d-flex a:nth-child(3) {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

td .d-flex a:nth-child(3):hover {
    background: #dc3545;
    color: #fff;
}

.user-info {
    gap: 10px;
    /* margin-bottom: 5px; */
}

.profile-image img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* Name styling */
.user-name {
    font-weight: 600;
    font-size: 14px;
}

/* Email & phone rows */
.user-meta {
    gap: 8px;
    font-size: 13px;
    color: #6c757d;
    margin-left: 50px;
    /* aligns under name */
}

/* Icons */
.user-meta i {
    font-size: 14px;
    color: #6c757d;
}

.user-meta p {
    margin-bottom: 0px !important;
}

/* Switch container */
.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

/* Hide default checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* Slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ccc;
    transition: 0.3s;
    border-radius: 34px;
}

/* Circle */
.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: white;
    transition: 0.3s;
    border-radius: 50%;
}

/* Checked state */
input:checked+.slider {
    background: #28a745;
}

input:checked+.slider:before {
    transform: translateX(22px);
}

/* Optional hover */
.switch:hover .slider {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.dtr-modal .table td,
.dtr-modal .table th {
    padding: 40px 16px !important;
    /* more space */
}
/* .avatar-title
{
    background-color: transparent!important;
} */
 .logo

 {
    line-height: 100px!important;
    padding-top:20px!important;
 }
 