@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Breadcrumbs */
.page-breadcrumb-wrapper {
    background: #f5fdff;
}
.page-breadcrumbs {
    padding: 15px 20px;
}

.page-breadcrumbs ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.page-breadcrumbs ul li {
    position: relative;
    font-size: 14px;
    color: #666;
}

/* Links */
.page-breadcrumbs ul li a {
    text-decoration: none;
    color: #666;
    transition: color 0.3s ease;
}

/* Hover effect */
.page-breadcrumbs ul li a:hover {
    color: #000;
}

/* Separator (/) */
.page-breadcrumbs ul li:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
    color: #aaa;
}

/* Active (last item) */
.page-breadcrumbs ul li:last-child a {
    color: #000;
    font-weight: 500;
    pointer-events: none;
}

/* Input [Text] */
.field-box input[type="text"],
.field-box input[type="date"] {
    font-family: var(--Primary-Font);
    width: 100%;
    height: 40px;
    padding: 5px 10px;
    border: 1px solid #d2d2d2;
    border-radius: 3px;
    color: #000;
}

    .field-box input[type="text"]:hover,
    .field-box input[type="email"]:hover,
    .field-box input[type="text"]:focus,
    .field-box input[type="email"]:focus,
    .field-box input[type="text"]:target,
    .field-box input[type="text"]:target {
        border: 1px solid #d1eaff;
        box-shadow: 0px 0px 10px #f1f8ff;
        border-radius: 3px;
        outline: none;
    }
.field-box.icon-left,
.field-box.icon-right {
    position: relative;
}
.field-box.icon-left img {
    position: absolute;
    top: 50%;
    left: 10px;
    width: 18px;
    transform: translateY(-50%);
}
.field-box.icon-left input {
    padding-left: 35px;
}
.field-box.icon-right img {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 18px;
    transform: translateY(-50%);
}
.field-box.icon-right input {
    padding-right: 35px;
}

/* Select Field */
.field-box select {
    font-family: var(--Primary-Font);
    width: 100%;
    height:40px;
    padding: 5px 10px;
    border: 1px solid #d2d2d2;
    border-radius: 3px;
    color:#000;
}
.field-box input[type="text"]:hover,
.field-box input[type="text"]:focus,
.field-box input[type="text"]:target{
    border: 1px solid #d1eaff;
    box-shadow:0px 0px 10px #f1f8ff;
    border-radius: 3px;
    outline:none;
}

/* Textarea Field */
.field-box textarea {
    font-family: var(--Primary-Font);
    width: 100%;
    min-height:100px;
    padding: 5px 10px;
    border: 1px solid #d2d2d2;
    border-radius: 3px;
    color:#000;
}
.field-box textarea:hover,
.field-box textarea:focus,
.field-box textarea:target{
    border: 1px solid #d1eaff;
    box-shadow:0px 0px 10px #f1f8ff;
    border-radius: 3px;
    outline:none;
}


.checkbox-group {
    display: flex;
    flex-wrap: wrap;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 15px;
    padding: 10px 0px;
}

.checkbox-btn {
    flex: 0 0 calc((100% - 120px) / 7);
    display: flex;
    align-items: center;
    cursor: pointer;
}
.checkbox-btn input {
  display: none;
}
    .checkbox-btn span {
        display: flex;
        padding: 5px;
        width: 100%;
        height: 60px;
        font-weight: 600;
        color: #707070;
        align-items: center;
        justify-content: center;
        text-align: center;
        border-radius: 6px;
        background: #ffffff;
        border: 2px solid #e4e4e4;
        transition: 0.3s ease;
    }
/* Default light buttons */
.checkbox-btn.light span {
  background: #e5e5e5;
  color: #666;
  border: 2px solid #ccc;
}

/* Hover effect */
.checkbox-btn:hover span {
    background: #ffffff;
    border:2px solid #5081ff; 
    color: #5081ff;
}

/* Checked state */
.checkbox-btn input:checked + span {
    background: #f8fafd;
    border:2px solid #5081ff; 
    color: #5081ff;
}


/* Button Style */
.btn {
    height: 40px;
    padding: 5px 10px;
    min-width: 100px;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 3px;
    font-weight: 500;
    font-family: var(--Primary-Font);
}
.save-btn.btn {
    background-color: #4294ff;
    color: #fff;
    border-radius: 3px;
}
.reset-btn.btn {
    background-color: #c6c6c6;
    color: #1f1f1f;
    border-radius: 3px;
}
.icon-btn {
    height: 40px;
    padding: 10px;
    border: 0px;
    outline: 0px;
    border-radius: 3px;
}
.add.btn {
    display: flex;
    background-color: #00b844;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    justify-content: center;
    align-items: center;
}

.back-btn.btn {
    display: flex;
    background-color: #e67e22;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    justify-content: center;
    align-items: center;
}
.icon-btn.primary-btn {background-color: #2563eb;}


.field-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  border: 1px solid #d2d2d2;
}
.field-checkbox {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: row-reverse;
    gap: 10px;
    padding-bottom: 5px;
    height: 40px;
    border: 1px solid #d2d2d2;
    padding: 5px 15px 5px 10px;
    margin-top: 10px;
    color: #000;
    border-radius: 3px;
    background-color: #fff;
}

.field-checkbox label {
    margin: 3px 0px;
}

.field-input input[type="file"] {
    border: 1px solid #d2d2d2;
    height: 40px;
    padding: 10px;
    font-family: var(--Primary-Font);
    width: 100%;
}

/* Table */
.table-top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    font-size: 16px;
}
.table-center {
    padding: 5px 30px;
    background-color: #e6f8ff;
    font-weight: 600;
    border-radius: 15px;
    border: 2px solid #ccedf9;
}
.table-wrapper {
    background-color: #fff;
    border-radius: 8px;
    overflow: auto;
    width: 100%;
    max-height:700px;
}
.table-wrapper table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    color: #3f3f3f;
    border: none !important;
}
.table-wrapper thead {
    background-color: #EDEFF3;
    color: #3f3f3f;
    position: sticky;
    top: 0px;
    z-index: 9;
}

.table-wrapper tbody tr {
    border-bottom: 1px solid #e6e6e6;
}
.table-wrapper tbody tr:hover{
    background-color: #f2faff;
    border-color: rgb(211, 238, 255);
}
.table-wrapper tbody tr:last-child{
    border-bottom: 0px;
}
.table-wrapper table td,
.table-wrapper table th{
    padding:8px 10px;
    text-align: left;
    border: none !important;
}
.table-wrapper thead th{
    font-weight:600;
    padding: 12px 10px;
}
.table-wrapper  .logo img {
    max-width: 40px;
    max-height: 40px;
}
.table-wrapper .table-btn {
    width: 22px;
    height: 22px;
    padding: 3px;
    border-radius: 50%;
    opacity: 0.5;
    cursor: pointer;
    margin: 0 auto;
    border: none;
    background-color: transparent;
}
.table-wrapper .badge {
    padding: 5px 12px;
    background-color: #f0f0f0;
    border-radius: 12px;
    color: #545454;
}
.table-wrapper .badge.badge-public {
    background-color: #0058ff1a;
    color: #3061ff;
}
.no-badge {
    background: #ff00001a;
    padding: 5px 10px;
    border-radius: 15px;
    color: #ff6060;
    font-size: 12px;
}
.yes-badge {
    background: #00c52a1a;
    padding: 5px 10px;
    border-radius: 15px;
    color: #00c52a;
    font-size: 12px;
}


/* Card component */
.card{
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: var(--card-shadow);
    margin-bottom: 20px;
}