.freelancer-join-full-page {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Inter', sans-serif;
    color: #333;
    background: #fff;
    box-sizing: border-box;
}

/* Hero Section */
.freelancer-hero-section {
    text-align: center;
    margin-bottom: 40px;
}
.freelancer-hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #1e1e1e;
}
.freelancer-hero-subtitle {
    font-size: 1.2rem;
    color: #555;
}

/* Form */
.freelancer-join-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Form Groups */
.freelancer-form-group {
    display: flex;
    flex-direction: column;
}
.freelancer-label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}
.freelancer-required {
    color: red;
}

/* Inputs & Textareas */
.freelancer-text-input,
.freelancer-textarea,
.freelancer-select {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
    width: 100%;
    box-sizing: border-box;
}
.freelancer-text-input:focus,
.freelancer-textarea:focus,
.freelancer-select:focus {
    border-color: #7a00df;
    box-shadow: 0 0 0 2px rgba(122,0,223,0.2);
}

/* Hints */
.freelancer-hint {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
}

/* Photo Upload */
.freelancer-photo-upload-area {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.freelancer-photo-preview-box {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 2px dashed #ccc;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.freelancer-photo-default {
    font-size: 0.9rem;
    color: #999;
}
.freelancer-photo-input {
    display: none;
}
.freelancer-photo-preview-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.freelancer-photo-default.hidden {
    display: none;
}
.freelancer-photo-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}
.freelancer-photo-preview-box:hover .freelancer-photo-hover {
    opacity: 1;
}
.freelancer-camera-icon {
    width: 35px;
    height: 35px;
}

/* Skills Box */
.freelancer-skills-box {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 8px;
}
.freelancer-skill-entry {
    border: none;
    outline: none;
    flex: 1;
    min-width: 150px;
    font-size: 1rem;
}
.freelancer-skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* Certificates */
.freelancer-cert-upload-box {
    border: 2px dashed #ccc;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    width: 100%;
    cursor: pointer;
    position: relative;
    background: #f9f9f9;
    box-sizing: border-box;
}

/* Inner flex for icon and text */
.freelancer-cert-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Icon in the box */
.freelancer-cert-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

/* Hide actual file input */
.cert-input {
    display: none;
}

/* Default text */
.cert-default-text {
    font-size: 14px;
    color: #666;
}

/* Container for certificate previews */
.cert-previews-container {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
}

/* Small certificate previews */
.certification-preview-box {
    width: 80px; /* small thumbnail */
    height: 80px;
    margin: 5px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.certification-preview-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.cert-delete {
    position: absolute;
    top: 2px;
    right: 2px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    display: none;
    cursor: pointer;
}
.certification-preview-box:hover .cert-delete {
    display: block;
}
/* Buttons */
.freelancer-form-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.freelancer-btn-submit {
    background: linear-gradient(135deg, #7a00df, #4721fb);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}
.freelancer-btn-submit:hover {
    opacity: 0.9;
}
.freelancer-btn-cancel-square {
    text-decoration: none;
    border: 1px solid #ccc;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    color: #555;
    display: inline-block;
    transition: 0.3s;
}
.freelancer-btn-cancel-square:hover {
    background: #f0f0f0;
}

/* Responsive */
@media screen and (max-width: 900px) {
    .freelancer-join-full-page {
        padding: 20px;
        margin: 20px;
    }
    .freelancer-form-actions {
        flex-direction: column;
        gap: 10px;
    }
    .freelancer-photo-preview-box {
        width: 120px;
        height: 120px;
    }
}
@media screen and (max-width: 600px) {
    .freelancer-hero-section h1 {
        font-size: 2rem;
    }
    .freelancer-hero-subtitle {
        font-size: 1rem;
    }
}

/* Global form error message */
.freelancer-global-error {
    font-family: 'Inter', sans-serif;
    background: #fff2f2;
    border-left: 4px solid #ff4d4f;
    padding: 12px 16px;
    margin-bottom: 20px;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    color: #c62828;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Individual field error under input */
.freelancer-field-error {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #c62828;
    margin-top: 6px;
    display: block;
}


.freelancer-skill-tag .remove-tag {
    cursor: pointer; /* makes it a pointer */
    color: #ff4d4f; /* optional: make it more visible */
    margin-left: 6px; /* optional spacing */
    font-weight: bold; /* optional emphasis */
}

.freelancer-skill-tag .remove-tag:hover {
    color: #c62828; /* optional: darker on hover */
}


_____________________________
/* Freelancer Profile Styles - PHP Template Compatibility */

:root {
  --primary-purple: #6366f1;
  --primary-purple-hover: #4f46e5;
  --bg-slate: #f8fafc;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --white: #ffffff;
  --border-light: #e2e8f0;
  --shadow-soft: 0 4px 20px -2px rgba(0, 0, 0, 0.05), 0 0 3px rgba(0, 0, 0, 0.02);
  --radius-lg: 1rem;
  --radius-md: 0.75rem;
  --font-display: 'outfit', sans-serif;
  --font-sans: 'Inter', sans-serif;
}

.freelancer-profile-page-outer {
  background-color: #f8fafc;
  min-height: 100vh;
  padding: 40px 20px;
  font-family: 'outfit', sans-serif;
  color: #0f172a;;
}

.freelancer-profile-page-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.freelancer-two-column-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 991px) {
  .freelancer-two-column-layout {
    grid-template-columns: 1fr;
  }
}

/* Sidebar Column */
.freelancer-sidebar-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.freelancer-profile-card, 
.freelancer-sidebar-section {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05), 0 0 3px rgba(0, 0, 0, 0.02);;
  padding: 32px;
  border: none;
}

.freelancer-profile-card {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.freelancer-profile-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(135deg, #f5f3ff 0%, #eff6ff 100%);
  z-index: 0;
}

.freelancer-avatar-wrapper {
  position: relative;
  width: 128px;
  height: 128px;
  margin: 0 auto 16px;
  z-index: 1;
}

.freelancer-avatar-large {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.freelancer-online-dot {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  background-color: #22c55e;
  border: 3px solid #ffffff;
  border-radius: 50%;
}

.freelancer-full-name {
  font-family: 'outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #0f172a;
}

.freelancer-username {
  font-size: 14px;
  color: #64748b;
  margin: 0 0 4px;
  font-weight: 500;
}

.freelancer-professional-title {
  font-size: 14px;
  color: #6366f1;;
  font-weight: 600;
  margin: 0 0 16px;
}

.freelancer-location-member {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 12px;
  color: #64748b;
  margin-bottom: 24px;
}

.freelancer-quick-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid #e2e8f0;
  margin-bottom: 24px;
}

.stat-item {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.stat-star {
  color: #eab308;
  margin-right: 4px;
}

.stat-count {
  font-weight: 400;
  color: #64748b;
}

.freelancer-action-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.btn-contact-purple {
  background-color: #6366f1;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-contact-purple:hover {
  background-color: #4f46e5;
  transform: translateY(-1px);
}

.btn-hire-outline {
  background-color: transparent;
  color: #0f172a;
  border: 1px solid  #e2e8f0;
  padding: 12px 24px;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-hire-outline:hover {
  background-color: #f1f5f9;
  border-color: #cbd5e1;
}

/* Sidebar Sections */
.freelancer-sidebar-section h2 {
  font-family: 'outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
}

.freelancer-bio {
  font-size: 13px;
  line-height: 1.4;
  color: rgb(53, 53, 53);
}

.freelancer-skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.freelancer-tag {
  background-color: #f1f5f9;
  color: #475569;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s;
}

.freelancer-tag:hover {
  background-color: #e0e7ff;
  color:  #6366f1;
}

/* Main Content Column */
.freelancer-gigs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.freelancer-gigs-header h2 {
  font-family: 'outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.freelancer-view-all {
  font-size: 14px;
  color: #6366f1;
  text-decoration: none;
  font-weight: 600;
}

.freelancer-view-all:hover {
  text-decoration: underline;
}

.freelancer-gigs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 2fr));
  gap: 24px;
}
.site-main{
    background-color:#f7f8fa;
    padding-top:10px;
}


.freelancer-gig-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05), 0 0 3px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.freelancer-gig-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.freelancer-gig-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.freelancer-gig-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.freelancer-gig-card:hover .freelancer-gig-image img {
  transform: scale(1.05);
}

.freelancer-gig-content {
  padding: 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.freelancer-gig-title {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 16px;
  line-height: 1.4;
  height: 44px;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.freelancer-gig-footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.freelancer-gig-rating {
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
}

.freelancer-gig-price {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.freelancer-gig-price strong {
  font-size: 16px;
  color:  #0f172a;
  display: block;
}

.freelancer-no-content {
  color: #64748b;
  font-style: italic;
}*/




#skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 5px;
}
.skill-tag {
    background: #eee;
    padding: 5px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
}
.skill-tag button.remove-skill {
    border: none;
    background: transparent;
    margin-left: 5px;
    cursor: pointer;
    font-weight: bold;
}
________________________________
.user-menu {
    position: relative;
    display: inline-block;
    margin-left: 20px;
}

.user-menu-button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ccc;
}

.user-menu-dropdown {
    display: none; /* hidden by default */
    position: absolute;
    top: 110%;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 180px;
    z-index: 999;
}

.user-menu-dropdown li a {
    display: block;
    font-family: 'inter', sans-serif;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.user-menu-dropdown li a:hover {
    background: #f0f0f0;
}

.user-menu {
    position: relative; /* keep dropdown positioned relative to avatar */
    z-index: 1000;      /* make sure it’s above other elements */
}

.user-menu-dropdown {
    position: absolute;
    top: 100%;  /* below the avatar */
    right: 0;
    display: none; /* hidden by default */
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 6px;
    overflow: visible; /* make sure nothing inside is clipped */
}


.sub-header {
    display: flex;
    align-items: center;       /* vertically center all children */
    justify-content: flex-end; /* keep logo separate if needed */
    gap: 20px;                 /* spacing between nav and avatar */
    padding: 0 20px;           /* optional padding left/right */
    height: 60px;              /* set consistent header height */
    position: relative;        /* needed for dropdown absolute positioning */         /* adjust to match your theme */
}


.join-now-container {
    display: flex;
    align-items: center;
    justify-content: center; /* center in available space */
    margin: 0 15px; /* small spacing from menu/avatar */
}

.join-now-btn {
    font-family:'inter',sans-serif;
    display: inline-block;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    background: linear-gradient(135deg, #7c39ee, #12c9f2);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

__________________________________________


.create-gig-wrapper {
    display: flex !important;
    justify-content: center !important;
    padding: 40px 20px;
    min-height: 100vh !important;
    background: #f9fafb;
}

.create-gig-inner-container {
    max-width: 820px;
    width: 100%;
    margin: 0 auto;  
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    padding: 48px 40px;
    border: 1px solid #eef2f6;
}

.create-gig-title {
  font-family: 'outfit', sans-serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px;
    text-align: center;
}

.create-gig-intro {
  font-family: 'inter', sans-serif;
    font-size: 1rem;;
    color: #6b7280;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.5;
}

.gig-field-group {
    margin-bottom: 32px;
}

.gig-field-group label {
    display: block;
    font-family: 'outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.gig-required {
    color: #ef4444;
}

.gig-help-text {
    font-family:'inter',sans-serif ;
    font-size: 0.82rem;
    color: #9ca3af;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.gig-text-input,
.gig-number-input,
.gig-textarea {

    width: 100%;
    padding: 13px 16px;
    font-size: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    box-sizing: border-box;
    font-family: 'inter', sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.gig-text-input:focus,
.gig-number-input:focus,
.gig-textarea:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

.gig-editor-toolbar {
    display: flex;
    gap: 10px;
    margin-bottom: -1px;
    padding: 10px 12px;
    background: #f9fafb;
    border: 1px solid #d1d5db;
    border-radius: 8px 8px 0 0;
}

.gig-editor-toolbar button {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.15s;
}

.gig-editor-toolbar button:hover {
    background: #f3f4f6;
}

.gig-textarea {
    font-family: 'inter', sans-serif;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    min-height: 180px;
    resize: vertical;
}

.gig-price-wrapper {
    position: relative;
    max-width: 180px;
}

.gig-dollar {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-weight: 500;
}

.gig-price-wrapper .gig-number-input {
    padding-left: 32px;
}

.gig-char-counter {
    text-align: right;
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 6px;
}

.gig-current-chars.over-limit {
    color: #ef4444;
    font-weight: 600;
}
/* Field spacing */
.gig-field-group {
    margin-bottom: 28px;
}

/* Label */
.gig-field-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 6px;
}

.gig-required {
    color: #ef4444;
}

/* Help text */
.gig-help-text {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 14px;
}

/* Upload containers */
/* ===============================
   Upload Section Labels
=================================*/
.upload-labels {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    margin: 28px 0 10px 0;
}

/* ===============================
   Upload Containers
=================================*/
.gig-file-upload,
.gig-multi-upload {
    position: relative;
    border: 2px dashed #e5e7eb;
    border-radius: 16px;
    padding: 38px 20px;
    text-align: center;
    background: #f9fafb;
    transition: all 0.25s ease;
    cursor: pointer;
    overflow: hidden;
}

/* Hover state */
.gig-file-upload:hover,
.gig-multi-upload:hover {
    border-color: #6366f1;
    background: #eef2ff;
}

/* Drag state (for JS later) */
.gig-file-upload.drag-active,
.gig-multi-upload.drag-active {
    border-color: #4f46e5;
    background: #e0e7ff;
}

/* ===============================
   Hide Default File Button
=================================*/
.gig-file-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* ===============================
   Upload Hint Text
=================================*/
.gig-file-hint,
.gig-multi-upload p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #9ca3af;
    margin: 0;
    font-weight: 500;
    pointer-events: none;
}

/* Optional upload icon */
.gig-file-upload::before,
.gig-multi-upload::before {
    content: "⬆";
    display: block;
    font-size: 26px;
    margin-bottom: 10px;
    color: #cbd5e1;
    transition: 0.25s;
    pointer-events: none;
}

.gig-file-upload:hover::before,
.gig-multi-upload:hover::before {
    color: #6366f1;
}

/* ===============================
   Preview Container
=================================*/
.gig-preview-container {
    min-height: 70px;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
}

/* ===============================
   Preview Items
=================================*/
.gig-preview-item {
    position: relative;
    max-width: 180px;
}

.gig-preview-item img,
.gig-preview-item .file-placeholder {
    width: 180px;
    height: 120px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    object-fit: cover;
    background: #f1f5f9;
}

/* File placeholder (PDF etc) */
.gig-preview-item .file-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: #475569;
    padding: 12px;
    text-align: center;
}

/* Remove button */
.gig-preview-item .remove-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: #ef4444;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 14px;
    line-height: 24px;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    transition: 0.2s;
}

.gig-preview-item .remove-btn:hover {
    background: #dc2626;
    transform: scale(1.05);
}

/* ===============================
   Form Actions
=================================*/
.gig-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

/* Draft Button */
.gig-btn-draft {
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gig-btn-draft:hover {
    background: #f1f5f9;
}

/* Publish Button */
.gig-btn-publish {
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    background: #6366f1;
    color: #ffffff;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(99, 102, 241, 0.28);
    transition: all 0.2s ease;
}

.gig-btn-publish:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(79, 70, 229, 0.32);
}

/* Responsive */
@media (max-width: 640px) {
    .create-gig-inner-container {
        padding: 32px 24px;
    }
    .gig-form-actions {
        flex-direction: column;
        gap: 12px;
    }
    .gig-btn-draft,
    .gig-btn-publish {
        width: 100%;
    }
}
.gig-text-input option {
    padding: 10px;
    font-size: 1rem;
}

select.gig-text-input {
    color:#696d71;
    font-family:'inter', sans-serif;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' 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 16px center;
    background-size: 12px;
    padding-right: 36px;
}
/*________________________________________________________________________________________________*/
.ser-price{
    color:#1b0f15;
    font-size: 18px;
    font-weight:600;
    font-family:'outfit', sans-serif;
    
}
.starting-price{
    color:#888;
    font-size:12px;
    font-family: 'inter', sans-serif;
}

.container{
    padding-bottom:25px;

}
.blog-home{
    padding-top:20px;
    background-color: #f7f8fa;
    border-bottom: solid rgb(214, 214, 214) 1px;
}



/* 404 Page */

.tw-404-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    text-align: center;
    padding: 40px 20px;
}

.tw-404-container {
    max-width: 700px;
}

.tw-404-code {
    font-family: 'Outfit', sans-serif;
    font-size: 160px;
    font-weight: 800;
    line-height: 1;
    margin: 0;
    background: linear-gradient(135deg, #7b5cff, #00cfff);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tw-404-title {
    font-family:'inter',sans-serif;
    font-size: 32px;
    margin-top: 10px;
    color: #111;
    font-weight: 600;
}

.tw-404-text {
    font-family:'inter',sans-serif;
    margin-top: 15px;
    color: #666;
    font-size: 16px;
}

.tw-404-btn {
    font-family:'inter',sans-serif;
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #7b5cff, #00cfff);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s ease;
}

.tw-404-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(123, 92, 255, 0.25);
}