 /* Star ratings and Likes */
    .likes .like-btn {
      font-size: 20px;
      color: #aaa;
      cursor: pointer;
    }
    .likes .like-btn.liked {
      color: #e74c3c; /* red heart */
    }
    .like-count {
      margin-left: 5px;
      font-weight: bold;
    }

    .rating .star {
      font-size: 15px;
      color: #ccc;
      cursor: pointer;
      transition: color 0.2s;
    }
    .rating .star.active {
      color: #FFD700; /* gold for saved rating - not used in avg display path but kept */
    }
    .rating .star.hover {
      color: #FFD700; /* gold for hover preview */
    }

    .star.gold {
      color: #FFD700;   /* gold */
    }
    .star {
      font-size: 15px;
      color: #ccc;      /* gray empty */
      cursor: pointer;
      transition: color 0.2s;
    }

    /* optional: small spacing for cards container */
    .main-content.gallery { padding: 20px; }
    #loading { padding: 20px; color: #444; }

/* Manage */
#searchBar_Manage i {
    color: #ff9e42;
}
#searchBar_Manage button:hover, #uploadModal button.icon-only:hover {
    background-color: transparent;
}
/* Toolbar */
.toolbar{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:24px 24px 8px}
.toolbar-left{display:flex;gap:24px;flex-wrap:wrap}
.btn{background: #2563eb;
    color: white;
    padding: 10px 30px;
    border: none;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;}
.btn.primary{background:#2b6ff9;color:#fff}
.btn.primary:hover{background:#185ee0}
.btn.icon{background:transparent;padding:8px;border:2px solid #111;border-radius:10px}
.btn.icon img{width:22px;height:22px;display:block}

/* Search bar */
.searchbar_class{display:flex;align-items:center;gap:14px;background:#f1e9f6;border-radius:24px;padding:7px 16px; width: -webkit-fill-available;}
.searchbar_class input{flex:1;border:0;background:transparent;outline:none;font-size:16px}
.icon-only{border:0;background:transparent;padding:6px;cursor:pointer}
.icon-only img{width:24px;height:24px}

.hidden{display:none !important;}

/* Dropdowns */
.dropdown_manage{position:absolute;background:#efe8f3;border-radius:14px;box-shadow:0 12px 32px rgba(0,0,0,.15);padding:18px 18px;z-index:20;min-width:240px}
.dropdown_manage label{display:flex;align-items:center;gap:10px;padding:10px 6px;border-radius:10px}
.dropdown_manage .menu-item{display:block;width:100%;text-align:left;background:#fff;border:0;padding:12px 14px;margin:6px 0;border-radius:10px;cursor:pointer}
.dropdown_manage .menu-item:hover{background:#f3f4f6}

/* Gallery grid */
.gallery_manage{max-width:1160px;margin:12px auto 36px;padding:0 24px;display:grid;gap:34px}
.grid-gallery{grid-template-columns:repeat(4,1fr)}
.gallery_manage .item{display:flex;flex-direction:column;gap:8px}
.thumb{width:100%;aspect-ratio:16/10;object-fit:cover;border-radius:4px;box-shadow:0 2px 10px rgba(0,0,0,.1);cursor:pointer}
.caption{font-weight:700;text-align:center;font-size:14px;color:#111; white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; max-width: 200px;}

/* List & Details views */
.list-view{grid-template-columns:1fr}
.list-view .item{flex-direction:row;align-items:center;gap:16px}
.list-view .thumb{width:220px;aspect-ratio:16/10}

.details-view .item{gap:6px}
.details-view .caption{font-weight:600;font-size:13px;opacity:.9}

/* Modal upload */
.modal{position:fixed;inset:0;background:rgba(0,0,0,.35);display:grid;place-items:center;z-index:40}
.modal-card{width:min(820px,92vw);background:#fff;border-radius:8px;box-shadow:0 12px 40px rgba(0,0,0,.25);overflow:hidden;animation:pop .2s ease}
@keyframes pop{from{transform:scale(.98);opacity:.6}to{transform:scale(1);opacity:1}}
.modal-head{display:flex;justify-content:space-between;align-items:center;padding:22px 24px;border-bottom:1px solid #e5e7eb}
.dropzone{padding:36px 24px}
.drop-inner{display:grid;place-items:center;gap:18px;border:2px dashed #c7c7c7;border-radius:8px;padding:36px 12px}
.drop-inner .upload-icon{width:44px;height:44px;opacity:.9}
.btn.small{padding:10px 16px;border-radius:8px}
.muted{color:#888;margin:0}

/* Lightbox */
.lightbox{position:fixed;inset:0;background:rgba(0,0,0,.92);display:grid;place-items:center;z-index:50}
.lightbox img{max-width:92vw;max-height:84vh;border-radius:6px;box-shadow:0 20px 60px rgba(0,0,0,.4)}
.lightbox button{position:fixed;background:transparent;border:0;cursor:pointer}
.lightbox-close{top:20px;right:20px}
.lightbox-prev{left:24px;top:50%;transform:translateY(-50%)}
.lightbox-next{right:24px;top:50%;transform:translateY(-50%)}
.lightbox button img{width:28px;height:28px;filter:invert(1);opacity:.9}

/* Responsive columns */
@media (max-width: 1200px){
  .grid-gallery{grid-template-columns:repeat(3,1fr)}
}
@media (max-width: 900px){
  .grid-gallery{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 600px){
  .grid-gallery{grid-template-columns:1fr}
  .list-view .thumb{width:160px}
}


/* Dashboard */

.dashboard-container {
	display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    flex-direction: column;
}
.container_help {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* desktop default */
  gap: 20px;
  max-width: 1100px;
  margin: 60px auto;
}
.section_dashboard {
	    margin-bottom: 30px;
    }
    .section_dashboard h2 {
        font-size: 18px;
        margin-bottom: 10px;
        font-weight: bold;
		box-shadow: 0 2px 5px rgba(0,0,0,0.1);
		padding: 10px 15px;
		border-radius: 50px;
		text-align:center;
    }
	.patron h2 { background: #e7f7f6; }
    .creator h2 { background: #f3e9f7; }
    .studio h2 { background: #e9f0f7; }
    .admin h2 { background: #f0f0f0; }
    .buttons_dashboard {
		display: grid;
		grid-template-columns: repeat(3, 1fr); /* desktop default */
		gap: 20px;
		background: #fff;
		box-shadow: 0 2px 5px rgba(0,0,0,0.1);
		padding: 15px;
		border-radius: 10px;
    }
	
    .btn_dashboard {
        display: flex;
        align-items: center;
        gap: 5px;
        background: #e9f5f3;
        padding: 8px 12px;
        border-radius: 5px;
        font-size: 14px;
        text-decoration: none;
        color: #000;
    }
    .btn_dashboard i {
        font-size: 16px;
    }
    /* Different background colors for sections */
    .patron .btn_dashboard { background: #e7f7f6; }
    .creator .btn_dashboard { background: #f3e9f7; }
    .studio .btn_dashboard { background: #e9f0f7; }
    .admin .btn_dashboard { background: #f0f0f0; }

/* Tablet (2 columns) */
@media (max-width: 991px) {
  .container_help {
    grid-template-columns: repeat(2, 1fr);
	width: 90%;
  }
}

/* Mobile (1 column) */
@media (max-width: 767px) {
  .container_help {
    grid-template-columns: 1fr;
	width: 90%;
  }
}


/* Help */

.container_help {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* desktop default */
  gap: 20px;
  max-width: 1100px;
  margin: 60px auto;
}

/* Tablet (2 columns) */
@media (max-width: 991px) {
  .container_help {
    grid-template-columns: repeat(2, 1fr);
	width: 90%;
  }
}

/* Mobile (1 column) */
@media (max-width: 767px) {
  .container_help {
    grid-template-columns: 1fr;
	width: 90%;
  }
}

.card_help {
  position: relative;
    background: #f7f7f7;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 1px solid #cfcfcf;
	transition: 0.3s;
}
.card_help:hover {
  transform: translateY(0px);
  background: #323232;
}

.card_help .icon_help {
  text-align: center;
  padding: 100px 40px 100px 40px;
}
.card_help .panel_help {
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(66%);
  transition: transform 0.3s ease;
  padding: 20px 20px 40px 20px;
  border-radius: 20px;
  min-height:185px;
}

.card_help:hover .panel_help,
.card_help.active .panel_help {
  transform: translateY(20px);
}

.card_help .panel_help h3 {
  margin-bottom: 20px;
  font-size: 24px;
}

.card_help .panel_help p {
  font-size: 16px;
  color: #7f7f7f;
  margin-bottom: 10px;
}

.card_help .panel_help a {
  display: inline-block;
  font-size: 16px;
  color: #b3b3b3;
  text-decoration: underline;
  font-weight: bold;
  transition: 0.3s;
  margin-top:10px;
}
.card_help .panel_help a:hover {
  color: #030303;
  text-decoration: none;
}
/* ---------- Buttons ---------- */
.cta-row {
  max-width: 820px;
  margin: 28px auto 0;
  display: flex; gap: 22px; justify-content: center; flex-wrap: wrap;
}
.cta-center { display: grid; place-items: center; margin-top: 22px; margin-bottom: 60px; }

.btn_help {
  border: 0;
  background: #1976f2;
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: .2px;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
  text-decoration:none;
}
.btn_help:hover { background: #0d5ecd; }
.btn_help:active { transform: translateY(1px); }
.btn_help.large_help { padding: 12px 28px; }


/* My Favorites*/
.table-row > div.prct_name {
    width: 200px;
    flex: inherit;
}
.table-row > div.prct_domain {
    width: 400px;
    flex: inherit;
}
.colorlist {
	display: flex;
    gap: 10px;
    background: transparent !important;
    border: 0px !important;
}
.cntr_div {
	justify-content: center;
}
.profile_title img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
	display: block;
	margin: 30px auto 20px auto;
}
.profile_title h3 {
    font-size:18px;
	color:#f7931e;
	text-transform:uppercase;
	font-weight:bold;
	margin-bottom:40px;
}
.favorites_top {
	background: #fff;
	padding: 5px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: -15px;
}
.favorites_searchbar {
    gap: 5px;
    font-size: 14px;
	max-width: 1200px;
    display: flex;
    justify-content: flex-start;
    flex: 1;
}
.favorites_header  {
	display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
	max-width: 1200px;
    flex: 1;
}
.search-container {
    display: flex;
    align-items: center;
    background-color: #f0eaf2;
    border-radius: 50px;
    padding: 15px 10px;
    flex: 1;
    max-width: 50%;
}
.search-container button {
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
    margin: 0;
    text-align: center;
	color: #ff9e42;
	font-size:18px;
}
.search-container button:hover {
    background-color: transparent;
}
.search-container button i{
	margin-left: 0px;
  margin-right: 0px;
}
.search-container input {
    border: none;
    background: none;
    outline: none;
    flex: 1;
    padding: 5px 20px;
}
.menu-icon, .search-icon {
    color: #f7931e;
    font-size: 18px;
}
.add-icon {
    font-size: 40px;
    cursor: pointer;
    color: #030303;
}
.profile_grid_main {
	flex: 1;
    display: flex;
    justify-content: center;
    padding: 0px 20px;
}
.grid-container {
    max-width: 1200px;
}
.profile-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
	margin-top:60px;
	margin-bottom:40px;
}
.profile-grid ul{
	display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}
.profile-grid ul li {
	flex: 1 1 calc(33.33% - 20px);
    box-sizing: border-box;
	margin-bottom: 20px;
}
.profile-grid ul li a {
	font-size:20px;
	text-decoration:none;
	color:#030303;
}
.profile-grid ul li a:hover {
	color:#f7931e;
}
.profile-card {
    text-align: center;
}

.profile-card img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
}

.profile-card p {
    margin-top: 10px;
    font-size: 18px;
}
.popup-overlay_Fav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  animation: fadeOut 0.3s forwards;
}

.popup-overlay_Fav.active {
  display: flex;
  animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

.popup_Fav {
  background: #ece6f0;
  padding: 30px;
  border-radius: 10px;
  width: 320px;
  max-width: 90%;
  position: relative;
  animation: slideDown 0.3s ease;
  box-shadow: 0px 0px 20px #5a5a5a;
}
.popup_Fav p{
	font-size:16px;
	color:#030303;
}

@keyframes slideDown {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.close-btn_Fav {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}

.popup-input_Fav {
	width: 100%;
	padding: 15px;
	margin: 20px 0;
	border: 1px solid #a6a1a8;
	border-radius: 5px;
	background: transparent;
	font-size: 16px;
}

.popup-message_Fav {
  font-size: 14px;
  margin-bottom: 10px;
}

.popup-submit_Fav {
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
}

.popup-submit_Fav:hover {
  background: #0056b3;
}










#term-display {
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}
.project_form input[type="date"]{
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    font-family: sans-serif;
}
.term-dropdown {
    position: absolute;
    top: calc(100% - 20px); /* Slight offset below the input */
    left: 0;
    width: 300px; /* Fixed width to match screenshot, adjust as needed */
    background-color: #ece6f0; /* Light pink background */
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 10px;
    max-height: 250px;
    overflow-y: auto;
    box-sizing: border-box; /* Ensure padding doesn't affect width */
}
.term-dropdown i {
	position: absolute;
  left: 20px;
  top: 22px;
  transform: translateY(-50%);
  color: #f7931e;
  font-size: 16px;
}
#term-search {
    width: 100%;
    padding: 5px 5px 5px 40px;
    margin-bottom: 10px;
    border: 0px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
	background: transparent;
	border: none; /* Remove border */
    box-sizing: border-box;
	outline: none;
}
#term-search:focus {
	border: 0px solid #ddd;
}
.term-options {
    list-style: none;
    padding: 0;
    margin: 0;
}

.term-options li {
    padding: 5px 10px;
    cursor: pointer;
}

.term-options li:hover {
    background-color: #fff;
}

.term-options .selected {
    background-color: #ff99b9;
    color: white;
}
#attach-file {
    padding: 19px 30px 20px 30px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
    font-weight: 600;
    margin-top: 26px;
    margin-bottom: 10px;
    border: 1px solid #007bff;
	width:100%;
}

#file-name {
    font-size: 14px;
}
#ownershipBtn {
    padding: 19px 30px 19px 30px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
	text-decoration: none;
}
/* Date Picker */
.due-date-group {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
	margin-top: 16px;
}

#due-date-display {
    flex: 1;
	margin-bottom: 0px;
	padding: 19px 20px 20px 20px;
}

#due-date-btn {
    padding: 19px 30px 20px 30px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
	border: 1px solid #007bff;
}

/* Project form */
.project-id {
    font-weight: bold;
    color: #030303;
    text-decoration: underline;
    text-align: center;
	font-size:18px;
}
.colors_tab {
	padding: 15px 30px;
    background-color: #6c757d;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    transition: 0.3s;
    font-weight: 600;
	display: inline-block;
}
.project_form {
	max-width:900px;
}
.form_group_project {
    margin-bottom: 20px;
}

.project_form label {
    display: block;
    margin-bottom: 5px;
	font-weight:bold;
}

.project_form input[type="text"], .project_form textarea, .project_form input[type="number"] {
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
	font-family: sans-serif;
}

/* Target the select elements */
select {
    padding: 20px;
    padding-right: 30px; /* Increase right padding to give more space for the arrow */
    appearance: none; /* Remove default browser styling */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center; /* Adjust the position of the custom arrow */
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
	font-size: 16px;
	width:100%;
	margin-bottom: 20px;
}

/* Optional: Adjust for cross-browser compatibility */
select::-ms-expand {
    display: none; /* Hide the default arrow in IE */
}
.project_form select {
    padding: 20px;
    padding-right: 30px; /* Increase right padding to give more space for the arrow */
    appearance: none; /* Remove default browser styling */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center; /* Adjust the position of the custom arrow */
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
	font-size: 16px;
	width:100%;
	margin-bottom: 20px;
}

/* Optional: Adjust for cross-browser compatibility */
.project_form select::-ms-expand {
    display: none; /* Hide the default arrow in IE */
}
.project_form textarea {
    height: 100px;
    resize: vertical;
}

.slogan-group {
    display: flex;
    align-items: flex-end;
}

.slogan-input {
    flex: 1;
}

.project_form #upload-logo {
    padding: 15px 30px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
	font-size: 16px;
    transition: 0.3s;
	font-weight:600;
}
.project_logo_img {
	display: none;
	width: 100px;
	height:100px;
	margin: 20px auto;
    border-radius: 100%;
}
.project_upload_logo {
	text-align: center;
	margin-top: 60px;
}
.colors-group {
    position: relative;
}

.color-swatches {
    display: flex;
    gap: 10px;
	justify-content: center;
}
.color-swatch {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid #ddd;
}
.preview-btn {
    padding: 15px 30px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
	font-size: 16px;
    transition: 0.3s;
	font-weight:600;
	float: right;
}
.color-picker {
    margin-top: 10px;
    width: 250px;
}
.color-picker input[type="number"] {
	padding: 10px;
}
.sv-panel {
    position: relative;
    width: 250px;
    height: 150px;
}
.sv-background, .sv-saturation, .sv-value {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.sv-saturation {
    background: linear-gradient(to right, white, transparent);
}
.sv-value {
    background: linear-gradient(to bottom, transparent, black);
}
.sv-selector {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid white;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.hue-slider {
    position: relative;
    width: 250px;
    height: 20px;
    background: linear-gradient(to right, red 0%, yellow 16.666%, green 33.333%, cyan 50%, blue 66.666%, magenta 83.333%, red 100%);
    margin-top: 10px;
}
.hue-selector {
    position: absolute;
    width: 4px;
    height: 100%;
    background: white;
    transform: translateX(-50%);
    pointer-events: none;
}
.rgb-inputs {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.rgb-inputs label {
    flex: 1;
}
.rgb-inputs input {
    width: 100%;
}
.project_form .admin-status {
    display: flex;
    gap: 20px;
}
.project_form .admin-status > div {
    flex: 1;
}
.meta-tags-group {
    display: flex;
    align-items: center;
	flex-wrap: wrap;
}

.meta-tags-btn {
    padding: 15px 30px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
	font-size: 16px;
    transition: 0.3s;
	font-weight:600;
	margin-top: 10px;
    margin-bottom: 10px;
}

.tags-container {
    display: flex;
    gap: 10px;
    margin-left: 10px;
	flex-wrap: wrap;
}
.tag {
    padding: 5px 10px;
    background-color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0px 0px 10px #ccc;
    font-weight: 600;
    font-size: 14px;
	color:#030303;
}
.tag .remove-tag {
    cursor: pointer;
    color: #f7931e;
}
.project_form-actions {
    display: flex;
    gap: 10px;
	width: 100%;
    justify-content: center;
}

.project_form-actions .save-btn {
    padding: 15px 30px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
	font-size: 16px;
    transition: 0.3s;
	font-weight:600;
}

.project_form-actions .initialize-btn, .project_form-actions .cancel-btn {
    padding: 15px 30px;
    background-color: #6c757d;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
	font-size: 16px;
    transition: 0.3s;
	font-weight:600;
}
@media (max-width: 600px) {
    .project_form .admin-status {
        flex-direction: column;
        gap: 20px;
    }

    .slogan-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .project_form #upload-logo {
        margin-left: 0;
        margin-top: 10px;
    }

    .project_form-actions {
        flex-direction: column;
    }
}
/* Valcode View */

.Val_upload_view-container {
    padding: 20px;
    border-radius: 10px;
	color: #030303;
}
.Val_upload_view-group {
    margin-bottom: 15px;
	width:100%;
}
.Val_upload_view-group_bt {
    margin-bottom: 15px;
	display: flex;
    align-items: center;
    gap: 20px;
	width: 100%;
}
.Val_upload_view-group_bt .Val_upload_view-value{
    width: 50%;
}
.Val_upload_view-group_bt .Val_upload_view-label{
    width: 50%;
	background-color: #007bff;
    padding: 15px;
    text-align: center;
    color: #FFF;
    border-radius: 5px;
}
.Val_upload_view-group_copy {
    margin-bottom: 15px;
	display: flex;
    align-items: center;
    gap: 20px;
	width: 100%;
}
.Val_upload_view-group_copy .Val_upload_view-value_copy{
    width: 70%;
    padding: 15px 8px;
    background: white;
    border-radius: 6px;
    border: 1px solid #ddd;
    text-align: center;
    color: #030303;
    font-weight: bold;
    text-decoration: underline;
}
.Val_upload_view-group_copy .Val_upload_view-label_copy{
    width: 30%;
    padding: 0px;
    text-align: center;
    color: #FFF;
}
.Val_upload_view-group_copy .Val_upload_view-label_copy button{
    padding: 15px;
}
.Val_upload_view-label_ID {
    font-weight: bold;
    display: block;
    margin-bottom: 25px;
    text-align: center;
    text-decoration: underline;
    font-size: 18px;
}
.Val_upload_view-label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}
.Val_upload_view-value {
    padding: 15px 8px;
    background: white;
    border-radius: 6px;
    border: 1px solid #ddd;
}
.Val_upload_view-row {
    display: flex;
    gap: 15px;
}
.Val_upload_view-file a {
    color: #007bff;
    text-decoration: none;
}
.Val_upload_view-file a:hover {
    text-decoration: underline;
}
.Val_upload_view-group_button {
	margin-bottom: 15px;
    width: 100%;
    display: flex;
    gap: 10px;
    justify-content: center;
	margin-top:50px;
}

/* Document View */

.docu_upload_view-container {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
}
.docu_upload_view-group {
    margin-bottom: 15px;
}
.docu_upload_view-label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}
.docu_upload_view-value {
    padding: 8px;
    background: white;
    border-radius: 6px;
    border: 1px solid #ddd;
}
.docu_upload_view-row {
    display: flex;
    gap: 15px;
}
.docu_upload_view-file a {
    color: #007bff;
    text-decoration: none;
}
.docu_upload_view-file a:hover {
    text-decoration: underline;
}

/* Document upload */
    .docu_upload_form-container {
        max-width: 500px;
        margin: 0 auto;
        background: #f5f5f5;
    }
    .docu_upload_form-group {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }
    .docu_upload_form-label {
        background: #2563eb;
        color: white;
        padding: 12px 15px;
        border-radius: 6px;
        min-width: 150px;
        text-align: center;
        font-weight: bold;
        margin-right: 15px;
    }
    .docu_upload_form-input {
        flex: 1;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 6px;
        background-color: white;
    }
    .docu_upload_upload-box {
        border: 2px dashed #ccc;
        border-radius: 6px;
        text-align: center;
        padding: 40px;
        color: #666;
        font-size: 14px;
        margin-bottom: 30px;
        background-color: white;
        cursor: pointer;
        position: relative;
    }
    .docu_upload_upload-box input {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        top: 0;
        left: 0;
        cursor: pointer;
    }
    .docu_upload_note {
        font-weight: bold;
        color: #555;
        margin-bottom: 5px;
        text-align: center;
    }
    .docu_upload_note-text {
        font-size: 14px;
        text-align: center;
        margin-bottom: 30px;
    }
    .docu_upload_form-buttons {
        text-align: center;
    }
    .docu_upload_btn {
        padding: 10px 25px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-size: 14px;
        font-weight: bold;
        margin: 0 10px;
    }


/* User Add */
  .profile-section {
    text-align: center;
    margin-bottom: 20px;
}

.client-code {
    font-weight: bold;
    color: #ff8c00;
    text-decoration: underline;
}

.profile-pic img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 10px auto;
}

.upload-text {
    color: #ff8c00;
    text-decoration: underline;
    cursor: pointer;
    display: block;
    margin-top: 10px;
}

#fileInput {
    display: none;
}

        
/*////////////////// */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
	transition: 0.3s;
}
p {
	margin-bottom:20px;
}
body {
  font-family: sans-serif;
  background: #f1f1f1;
  color: #7f7f7f;
  line-height:1.3;
}
header {
  background: #fff;
  padding: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.inner_header {
	max-width: 1200px;
    display: flex;
    justify-content: space-between;
    flex: 1;
	align-items: center;
	z-index: 99999;
}
.main_breadcrumb {
	background: #fff;
	padding: 5px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: -15px;
}
.breadcrumb {
    gap: 5px;
    font-size: 14px;
	max-width: 1200px;
    display: flex;
    justify-content: flex-start;
    flex: 1;
}
.breadcrumb a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
	background-color:#eeeeee;
	padding:10px 15px 10px 25px;
	border-radius: 15px;
}
.breadcrumb a:hover {
	background-color:#cfcfcf;
	color:#fff;
}
.breadcrumb a:after, .breadcrumb .active:after {
	content: "\f105";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	margin-left: 20px;
}
.breadcrumb .active {
    color: #fff;
	background-color:#cfcfcf;
	padding:10px 15px 10px 25px;
	border-radius: 15px;
}
.breadcrumb i {
	margin-right:10px;
}
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}
.logo {

}
.nav_home a {
  margin-right: 20px;
  text-decoration: none;
  color: #7f7f7f;
}
.nav_home a:hover {
	color:#ff9e42;
}
.nav_home a:last-child {
  margin-right: 0px;
}
.login-btn {
  background: #ff9e42;
  color: #FFF !important;
  border: none;
  padding: 15px 16px;
  border-radius: 5px;
  cursor: pointer;
}
.login-btn:hover {
  background: #7f7f7f;
  color: #FFF;
}
.gallery {
  flex-direction: column;
  gap: 40px;
  padding: 40px 20px;
}
.card {
  overflow: hidden;
  max-width: 600px;
  width: 100%;
  margin: auto;
}
.card_img {
	border-radius: 10px;
	overflow: hidden;
}
.card img {
  width: 100%;
  height: auto;
  display: block;
}
.card-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  font-size: 14px;
}
.card-info a {
	color: #7f7f7f;
	text-decoration:none;
}
.card-info a:hover {
	color: #030303;
}
.avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  max-width: 45px;
}
.username {
  font-weight: bold;
}
.rating {
  margin-left: auto;
}
.likes::before {
  content: '👍 ';
}
footer {
  background: #000;
  color: #fff;
  padding: 20px;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.inner_footer {
	max-width: 1200px;
    display: flex;
    justify-content: space-between;
    flex: 1;
	align-items: center;
}
footer .social-icons {
  
}
footer .social-icons img {
  width: 24px;
  margin-left: 10px;
}

/* login form */

.form-container a{
	color:#ff9e42;
	text-decoration:none;
}
.forgot ::placeholder {
   text-align: center; 
}

/* or, for legacy browsers */

.forgot ::-webkit-input-placeholder {
   text-align: center;
}

.forgot :-moz-placeholder { /* Firefox 18- */
   text-align: center;  
}

.forgot ::-moz-placeholder {  /* Firefox 19+ */
   text-align: center;  
}

.forgot :-ms-input-placeholder {  
   text-align: center; 
}
.form-container p{
	text-align:center;
	color:#030303;
	margin-bottom:40px;
	line-height: 1.3;
}
.form-container a:hover{
	color:#7f7f7f;
}
.form-container {
    max-width: 600px;
    margin: auto;
	flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.form-container textarea {
	min-height:120px;
}
.form-container input, .form-container textarea {
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
	font-size:16px;
}
.form-container input[type="checkbox"] {
	width: auto;
	margin-right: 15px;
}
.form-container button {
    width: 100%;
    padding: 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
	transition: 0.3s;
	cursor:pointer;
}
button:hover {
    background-color: #0056b3;
}

.button_grey {
    width: 100%;
    padding: 20px;
    background-color: #4A4A4A !important;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
	transition: 0.3s;
	cursor:pointer;
}

.forgot_link {
	margin-top: 50px;
}
.forgot_link span {
	display:block;
	width:100%;
	text-align:center;
	margin-top:15px;
}
.forgot_link a {
	font-size:20px;
	font-weight:bold;
	color:#ff9e42;
	text-decoration:underline;
}
.forgot_link a:hover {
	color:#7f7f7f;
	text-decoration:none;
}
/* Clients */
.clients-container {
  display: flex;
  flex-wrap: wrap;
  width: 1200px;
}
.sidebar {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.side-btn {
	background: #f7931e;
	border: none;
	padding: 12px 20px;
	color: white;
	font-size: 16px;
	cursor: pointer;
	border-radius: 6px;
	text-align: center;
	text-decoration: none;
	font-weight: bold;
}
.side-btn:hover {
	background: #0056b3;
}
.main {
  flex: 1;
  padding: 20px;
}

.controls {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  position:relative;
}

.blue-btn {
  background: #2563eb;
  color: white;
  padding: 10px 20px;
  border: none;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}
.responsive-table {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  border: 1px solid #000;
  background: #fff;
}

.table-row {
  display: flex;
  flex-direction: row;
  padding: 10px;
  border-bottom: 1px solid #000;
}
.table-row input[type="checkbox"] {
    width: 20px;
    height: 20px;
}
.table-header {
  font-weight: bold;
  background: #000;
  color: #fff;
}

.table-row > div {
  flex: 1;
  padding: 8px;
  text-align: left;
  white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.table-row > div:first-child {
	width: 40px;
  flex: inherit;
}
.table-row > div:last-child {
  border-right: none;
}
.pagination {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pagination button {
  padding: 10px 15px;
  background: #333;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.pagination .active {
  background: white;
  color: black;
}

/* Filter Popup */
#filterPopup {
  position: absolute;
  top: 0px;
  right: 100px;
  width: 300px;
  background: #f2edf9;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: none;
  z-index: 999;
}

#filterPopup.show {
  display: block;
}

#filterPopup label {
  display: flex;
  align-items: center;
  margin: 20px 0;
  font-size: 15px;
  font-weight: bold;
}

#filterPopup input[type="checkbox"] {
	margin-left: auto;
	width: 20px;
	height: 20px;
}
/* Elevate Popup */
#elevatePopup {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  background: #f2edf9;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: none;
  z-index: 999;
}

#elevatePopup.show {
  display: block;
}

#elevatePopup label {
  display: flex;
  align-items: center;
  margin: 20px 0;
  font-size: 15px;
  font-weight: bold;
}
#ownershipPopup {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  background: #f2edf9;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: none;
  z-index: 999;
}

#ownershipPopup.show {
  display: block;
}

#ownershipPopup label {
  display: flex;
  align-items: center;
  margin: 20px 0;
  font-size: 15px;
  font-weight: bold;
}
#elevatePopup input[type="checkbox"] {
	margin-left: auto;
	width: 20px;
	height: 20px;
}
.elevate_msg {
	margin-top:30px;
}
.elevate_btn {
	margin-top: 30px;
    margin-bottom: 20px;
}
.elevate_btn ul{
	display:flex;
	justify-content: space-around;
    flex: 1;
	list-style:none;
}
.elevate_btn ul li a{
	background: #2563eb;
    color: #FFF;
    padding: 10px 20px;
    border: none;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
	text-decoration:none;
}
.elevate_btn ul li a.NO_bt{
	background: #707070;
    color: #FFF;
    padding: 10px 20px;
    border: none;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
	text-decoration:none;
}
.elevate_btn ul li a:hover {
	background: #f7931e;
    color: #FFF;
}
.elevate_msg p{
	font-weight:bold;
	text-align:center;
}
/* Disable Popup */
#disablePopup {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  background: #f2edf9;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: none;
  z-index: 999;
}
#disablePopup.show {
  display: block;
}
#enablePopup {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  background: #f2edf9;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: none;
  z-index: 999;
}
#enablePopup.show {
  display: block;
}
.elevate_msg {
	margin-top:30px;
}
.disable_btn {
	margin-top: 30px;
    margin-bottom: 20px;
}
.disable_btn ul{
	display:flex;
	justify-content: space-around;
    flex: 1;
	list-style:none;
}
.disable_btn ul li a{
	background: #2563eb;
    color: #FFF;
    padding: 10px 20px;
    border: none;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
	text-decoration:none;
}
.disable_btn ul li a:hover {
	background: #f7931e;
    color: #FFF;
}
.disable_msg p{
	font-weight:bold;
	text-align:center;
}
/* Search Bar */
#searchBar {
  display: none;
  align-items: center;
  background: #f2edf9;
  border-radius: 20px;
  padding: 10px 20px;
  margin-left: 10px;
  margin-right: 10px;
  flex: 1;
}
.serchbar_icon {
	width: 100%;
    display: flex;
    justify-content: space-between;
}
#searchBar button {
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
    margin: 0;
    text-align: center;
}
#searchBar button i{
	margin-left: 0px;
  margin-right: 0px;
}
#searchBar.show {
  display: flex;
}

#searchBar input {
  border: none;
  background: transparent;
  font-size: 14px;
  outline: none;
  width: 93%;
  padding: 0px;
  margin: 0px;
}

#searchBar i {
  color: #ff9e42;
  margin-left: 10px;
  margin-right: 20px;
}
#searchBar_popup {
  align-items: center;
    background: #ddd3eb;
    border-radius: 20px;
    padding: 10px 0px;
    margin-left: 0px;
    display: flex;
	margin-bottom:20px;
}
#searchBar_popup input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 14px;
  outline: none;
  width:90%;
}
#searchBar_popup button {
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0px 10px 0px 10px;
    margin: 0;
    text-align: center;
}
#searchBar_popup .BT_rset {
    padding: 0px 0px 0px 10px;
}
#searchBar_popup button i{
	margin-left: 0px;
  margin-right: 0px;
}
#searchBar_popup i {
  color: #ff9e42;
  margin-left: 10px;
  margin-right: 20px;
}

/* Main Menu */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  display: contents;
}
.hamburger {
  font-size: 1.5rem;
  background: none;
  border: none;
  display: none;
  color: var(--text);
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 99;
}
.nav-links li{
	width:100%;
	text-align:left;
}
.nav-links > li > a {
  text-decoration: none;
  color: #7f7f7f;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
  padding: 15px 20px;
  background-color: transparent;
  border-radius: 10px;
}
.nav-links > .dropdown > a:after {
	content: "\f107";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	margin-left: 20px;
}
.nav-links > li > a:hover, .nav-links > li > a.active {
  background-color: #f7931e;
  color:#FFF;
}
.nav-links button {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  background: #FFF;
  border-radius: 6px;
  min-width: 160px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  z-index: 99;
  animation: fadeIn 0.3s ease-in-out;
  list-style:none;
  min-width:230px;
  padding:10px;
}

.dropdown-menu li {
  position: relative;
}

.dropdown-menu li a {
  display: block;
  padding: 15px 20px;
  color: #7f7f7f;
  border-radius: 6px;
  text-decoration:none;
}
.dropdown-menu li a:hover {
	background-color:#ebebeb;
	color:#030303;
}
.dropdown-menu li a:hover:after {
	content: "\f105";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	right: 20px;
    position: absolute;
}
.dropdown:hover > .dropdown-menu {
  display: block;
}

.dropdown-menu .dropdown:hover > .dropdown-menu {
  display: block;
  left: 100%;
  top: 0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Feed page */
.profile_header {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	z-index: 99;
}
.profile_inner {
	max-width: 1200px;
	display: flex;
	justify-content: flex-start;
	flex: 1;
	height: 150px;
	border-radius: 10px;
	background-size: cover;
	background-position: center;
	width:100%;
}
.pro_pic_spc {
	margin-top:30px;
}
.profile_pic_img {
	text-align: center;
    max-height: 160px;
    height: 100%;
}
.profile_title {
	text-align: center;
    margin-bottom: 20px;
}
.profile_title a{
	font-size:18px;
	color:#f7931e;
	text-transform:uppercase;
	font-weight:bold;
}
.profile_title a:hover {
	color:#030303;
}
.profile_title_right {
	text-align: left;
    margin-top: 70px;
}
.profile_title_right a{
	font-size:18px;
	color:#f7931e;
	text-transform:uppercase;
	font-weight:bold;
}
.profile_title_right a:hover {
	color:#FFF;
}
.profile_pic_img img{
	border-radius: 100%;
    max-height: 100%;
	max-width: 100%;
}
.feed_cont {
	align-items: baseline;
}
.Profile_disc {
	border-radius: 10px;
	border:1px solid #cfcfcf;
	padding:10px 20px;
	margin-bottom:20px;
}
.more-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: #2563eb;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
	text-align:center;
	text-decoration:none;
	font-weight:bold;
}
.more-btn:hover {
    background: #0056b3;
    color: #fff;
}
.info-box {
    padding: 10px;
    margin-top: 8px;
    border-radius: 6px;
}
.country { background: #dde4ee; color:#2563eb;}
.city { background: #dfebe9; color:#26a68f; }

.pro_detail_section {
    margin-top: 15px;
	color:#030303;
}

.pro_detail_section h3 {
    text-align: center;
    margin-bottom: 15px;
	margin-top: 5px;
    background-color: #FFF;
    box-shadow: 0px 0px 10px 0px #666;
    border-radius: 100px;
    line-height: 40px;
    font-size: 15px;
    color: #030303;
    font-weight: bold;
}
.asset-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.asset-grid div {
    background: #dbdbdb;
    padding: 8px;
    border-radius: 6px;
}
.asset-grid div:nth-child(even) {
    background: #e5dfeb;
    padding: 8px;
    border-radius: 6px;
}
.subscription-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.subscription-grid div {
    background: #dbdbdb;
    padding: 8px;
    border-radius: 6px;
}
/* .subscription-grid div:nth-child(3) {
    background:transparent;
	padding: 0;
}*/
.subscription-grid div ul{
	list-style:none;
	display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.subscription-grid div ul li{
	padding: 8px;
    border-radius: 6px;
	background: #dbdbdb;
}
.subscription-grid div ul li:nth-child(2){
	background: #e5dfeb;
}
.pro_detail_buttons {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.send-btn, .fav-btn, .back-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: #2563eb;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
	text-align:center;
	text-decoration:none;
	font-weight:bold;
}
.send-btn:hover, .fav-btn:hover, .back-btn:hover {
    background: #0056b3;
    color: #fff;
}
.back-btn { background: #616161; color: #fff; }
.back-btn:hover { background: #f7931e; color: #fff; }

/* Popup styles */
.pro_detail_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    animation: fadeOut 0.3s forwards;
	z-index:99;
}

.pro_detail_overlay.active {
    display: flex;
    animation: fadeIn 0.3s forwards;
}

.pro_detail_popup {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: slideIn 0.3s ease;
}
.pro_detail_popup .pro_detail_bio {
	border-radius: 10px;
	padding:15px;
	border:1px solid #ccc;
	margin-top:20px;
}
.pro_detail_close-btn {
    float: right;
    font-size: 30px;
    cursor: pointer;
	font-weight:bold;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes slideIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.container_col {
  width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

[class*="col-"] {
  padding: 10px;
  box-sizing: border-box;
}

/* 12-column base widths */
.col-1  { width: 8.3333%; }
.col-2  { width: 16.6666%; }
.col-3  { width: 25%; }
.col-4  { width: 33.3333%; }
.col-5  { width: 41.6666%; }
.col-6  { width: 50%; }
.col-7  { width: 58.3333%; }
.col-8  { width: 66.6666%; }
.col-9  { width: 75%; }
.col-10 { width: 83.3333%; }
.col-11 { width: 91.6666%; }
.col-12 { width: 100%; }

/* Responsive: Tablet (min-width: 601px) */
@media (min-width: 601px) {
  .col-sm-1  { width: 8.3333%; }
  .col-sm-2  { width: 16.6666%; }
  .col-sm-3  { width: 25%; }
  .col-sm-4  { width: 33.3333%; }
  .col-sm-5  { width: 41.6666%; }
  .col-sm-6  { width: 50%; }
  .col-sm-7  { width: 58.3333%; }
  .col-sm-8  { width: 66.6666%; }
  .col-sm-9  { width: 75%; }
  .col-sm-10 { width: 83.3333%; }
  .col-sm-11 { width: 91.6666%; }
  .col-sm-12 { width: 100%; }
}

/* Responsive: Desktop (min-width: 901px) */
@media (min-width: 801px) {
  .col-md-1  { width: 8.3333%; }
  .col-md-2  { width: 16.6666%; }
  .col-md-3  { width: 25%; }
  .col-md-4  { width: 33.3333%; }
  .col-md-5  { width: 41.6666%; }
  .col-md-6  { width: 50%; }
  .col-md-7  { width: 58.3333%; }
  .col-md-8  { width: 66.6666%; }
  .col-md-9  { width: 75%; }
  .col-md-10 { width: 83.3333%; }
  .col-md-11 { width: 91.6666%; }
  .col-md-12 { width: 100%; }
}

/* Responsive: Large Desktop (min-width: 1201px) */
@media (min-width: 1101px) {
  .col-lg-1  { width: 8.3333%; }
  .col-lg-2  { width: 16.6666%; }
  .col-lg-3  { width: 25%; }
  .col-lg-4  { width: 33.3333%; }
  .col-lg-5  { width: 41.6666%; }
  .col-lg-6  { width: 50%; }
  .col-lg-7  { width: 58.3333%; }
  .col-lg-8  { width: 66.6666%; }
  .col-lg-9  { width: 75%; }
  .col-lg-10 { width: 83.3333%; }
  .col-lg-11 { width: 91.6666%; }
  .col-lg-12 { width: 100%; }
}
/* Responsive */
@media (max-width: 600px) {
  .card-info {
    flex-direction: column;
    align-items: flex-start;
  }
  footer .social-icons {
    position: static;
    transform: none;
    margin-top: 10px;
  }
  .form-container {
        padding: 15px;
    }
	.gallery {padding: 40px 0px; !important}
	.row {
	margin-left: 0px;
	margin-right: 0px;
	}
	.container_col {
	  width: 100%;
}
.pro_pic_spc {
  margin-top: 70px;
}
.profile_title_right {
  margin-top: 20px;
}
}
@media screen and (max-width: 768px) {
  .clients-container {
    flex-direction: column;
	width: auto;
  }

  .controls {
    flex-direction: column;
    gap: 10px;
  }

  .sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .table-header {
    display: none;
  }

  .table-row {
    flex-direction: column;
    border-bottom: 2px solid #000;
  }

  .table-row > div {
    border-right: none;
    border-bottom: 1px solid #aaa;
    display: flex;
    justify-content: space-between;
  }
.table-row > div:first-child, .table-row > div.prct_name, .table-row > div.prct_domain {
	width: auto;
  flex: 1;
}
  .table-row > div::before {
    content: attr(data-label);
    font-weight: bold;
  }

  .table-row > div:last-child {
    border-bottom: none;
  }
}
/* Mobile styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--menu-bg);
    flex-direction: column;
    display: none;
    padding: 1rem 0;
  }

  .nav-links.active {
    display: flex;
	background-color: #FFF;
	padding: 10px;
  }
.nav-links.active > li > a {
  text-decoration: none;
  color: #7f7f7f;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
  padding: 15px 20px;
  background-color: transparent;
  border-radius: 10px;
}
.nav-links.active > li > a:hover {
  background-color: #f7931e;
  color:#FFF;
}
.nav-links.active > .dropdown > a::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 20px;
  position: absolute;
  right: 20px;
}
  .dropdown-menu {
    position: static;
    display: none;
    background: var(--dropdown-bg);
    box-shadow: none;
    padding-left: 1rem;
  }

  .dropdown.open > .dropdown-menu {
    display: block;
  }

  .dropdown-menu .dropdown.open > .dropdown-menu {
    display: block;
  }
}
@media (max-width: 768px) {
    .profile-grid ul li {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .profile-grid ul li {
        flex: 1 1 100%;
    }
}