/* =========================================
   GLOBAL
========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #111;
}


a {
  text-decoration: none;
}
main.profile-page {
  flex: 1;
}
/* =========================================
   CONTAINER (MAIN ALIGNMENT SYSTEM)
========================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
/* =========================================
   NAVBAR (ALIGNED WITH CONTAINER)
========================================= */
.navbar {
  width: 100%;
  z-index: 10;
}
/* DROPDOWN WRAPPER */
.dropdown {
  position: relative;
}

/* MENU */
.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;

  min-width: 100px;
  padding: 10px 0;

  background: rgba(15, 26, 44, 0.96);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;

  box-shadow: 0 15px 40px rgba(0,0,0,0.25);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition: all 0.25s ease;
  z-index: 100;
}

/* SHOW */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ITEMS */
.dropdown-menu li {
  list-style: none;
}

/* LINKS */
.dropdown-menu a {
  display: block;
  padding: 12px 18px;

  color: #e2e8f0;
  font-size: 14px;

  transition: 0.25s ease;
}

/* HOVER */
.dropdown-menu a:hover {
  background: rgba(255,255,255,0.05);
  color: #ff7a00;
}
.navbar.transparent {
  position: absolute;
  top: 0;
  color: white;
}

.navbar.dark {
  background: rgba(11, 31, 58, 0.85);
  backdrop-filter: blur(10px);
  color: white;
box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* 🔥 IMPORTANT: alignment happens here */
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* LOGO CONTAINER */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* 🔥 NEW ICON (CIRCLE + ENGINEERING STYLE) */
.logo-icon {
  width: 42px;
  height: 42px;

  border-radius: 50%;
  background: linear-gradient(135deg, #ff7a00, #ff9a3c);

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: bold;
  color: white;
  font-size: 14px;

  position: relative;
  overflow: hidden;
}

/* subtle engineering lines (unique touch) */
.logo-icon::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 2px;
  background: rgba(255,255,255,0.3);
  transform: rotate(45deg);
}

.logo-icon::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 2px;
  background: rgba(255,255,255,0.2);
  transform: rotate(-45deg);
}

/* TEXT */
.logo-text strong {
  font-size: 16px;
}

.logo-text small {
  font-size: 10px;
  color: #aaa;
}
/* =========================================
   NAVBAR MENU (CLEAN + UNIQUE)
========================================= */

/* MENU LAYOUT */
.navbar ul {
  display:flex;
  align-items:center;

  list-style:none;

  gap:28px;

  margin:0;
  padding:0;
}
/* =========================================
   DESKTOP NAV
========================================= */

@media (min-width:769px){

  nav{
    flex:1;
    display:flex;
    justify-content:center;
  }

}

/* =========================================
   MOBILE NAVBAR
========================================= */

.menu-toggle{
  display:none;
}

@media (max-width:768px){

  .navbar{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:999;
  }

  .navbar .container{
    height:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 20px;

    flex-wrap:wrap;
  }

  .logo-text small{
    display:none;
  }

  .menu-toggle{
    display:block;
    font-size:32px;
    color:white;
    cursor:pointer;
  }

  nav{
    width:100%;
    display:none;

    background:#0f1a2c;

    margin-top:20px;
    padding:20px 0;

    border-radius:14px;
  }

  nav.active{
    display:block;
  }

  .navbar ul{
    display:flex;
    flex-direction:column;
    align-items:center;

    gap:20px;

    margin:0;
    padding:0;
  }

  .btn-devis{
    display:none;
  }

}
/* LINKS */
.navbar a {
  position: relative;
  color: inherit;
  font-size: 14px;
  padding: 5px 0;
  transition: 0.3s ease;
}

/* 🔥 UNDERLINE ANIMATION (CENTER OUT) */
.navbar a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #ff7a00;
  transition: 0.3s ease;
  transform: translateX(-50%);
}

/* HOVER + ACTIVE */
.navbar a:hover::after,
.navbar a.active::after {
  width: 100%;
}

/* =========================================
   BUTTON (UNIQUE STYLE)
========================================= */

.btn-devis {
  background: linear-gradient(135deg, #ff7a00, #ff9a3c);
  padding: 10px 22px;
  border-radius: 30px;
  color: white;
  font-weight: 500;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* HOVER EFFECT */
.btn-devis:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,122,0,0.4);
}

/* =========================================
   SERVICES HERO (ALIGNED)
========================================= */
/* =========================================
   HERO SECTION (UNIQUE + CLEAN)
========================================= */
.services-hero {
  height: 380px;

  display: flex;
  align-items: center;

  /* Dark engineering tone (more unique than Base44) */
  background:
    linear-gradient(110deg, rgba(5,15,35,0.85) 40%, rgba(5,15,35,0.65) 100%),
    url("../images/hero5.jpg") center/cover no-repeat;

  color: white;
  position: relative;
  overflow: hidden;

  animation: fadeInHero 1s ease-in-out;
}

/* Subtle pattern overlay (makes it look premium) */
.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 6px
  );

  pointer-events: none;
}

/* Align content with your global container */
.services-hero .container {
  width: 100%;
}

/* =========================================
   HERO CONTENT
========================================= */
.hero-content {
  max-width: 650px;
  position: relative;
  z-index: 2;
}

/* SMALL TITLE */
.hero-tag {
  color: #ff7a00;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* MAIN TITLE */
.services-hero h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}

/* ORANGE ACCENT LINE (DIFFERENT FROM BASE44) */
.services-hero h1::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(to right, #ff7a00, transparent);
  margin-top: 15px;
}

/* DESCRIPTION */
.hero-desc {
  color: #d1d5db;
  font-size: 15px;
  line-height: 1.6;
}

@keyframes fadeInHero {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =========================================
   FOOTER (FULL CLEAN VERSION)
========================================= */

.footer {
  background: linear-gradient(135deg, #0f1a2c 80%, #ff7a00);
  color: #ccc;
  padding: 60px 20px;
}

/* GRID */
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* TITLES */
.footer h4 {
  color: white;
  margin-bottom: 15px;
}

/* =========================================
   LOGO (MATCH NAVBAR STYLE)
========================================= */

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer .logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7a00, #ff9a3c);

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: bold;
  color: white;
  font-size: 13px;

  position: relative;
  overflow: hidden;
}

/* subtle engineering lines */
.footer .logo-icon::before,
.footer .logo-icon::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 2px;
  background: rgba(255,255,255,0.2);
}

.footer .logo-icon::before {
  transform: rotate(45deg);
}

.footer .logo-icon::after {
  transform: rotate(-45deg);
}

.footer .logo-text strong {
  color: white;
  font-size: 16px;
}

/* =========================================
   LINKS (UNDERLINE ANIMATION)
========================================= */

.footer a {
  position: relative;
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

/* underline animation */
.footer a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #ff7a00;
  transition: 0.3s ease;
  transform: translateX(-50%);
}

/* hover */
.footer a:hover::after {
  width: 100%;
}

.footer a:hover {
  color: white;
}

/* spacing */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

/* CTA */
/* =========================================
   CTA (UNIQUE + PREMIUM STYLE)
========================================= */
.cta {
  position: relative;
  padding: 100px 20px;

  background: #0f1a2c; /* dark engineering tone */
  color: white;

  text-align: center;
  overflow: hidden;
}

/* subtle grid pattern (engineering feel) */
.cta::before {
  content: "";
  position: absolute;
  inset: 0;

  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 60px
  );

  pointer-events: none;
}

/* orange glow accent */
.cta::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: #ff7a00;
  filter: blur(120px);

  top: -100px;
  right: -100px;

  opacity: 0.4;
}

/* content stays above effects */
.cta h2,
.cta p,
.cta a {
  position: relative;
  z-index: 2;
}

/* TITLE */
.cta h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

/* TEXT */
.cta p {
  color: #cbd5e1;
  margin-bottom: 30px;
  font-size: 15px;
}

/* BUTTON (more premium) */
.btn-secondary {
  background: linear-gradient(135deg, #ff7a00, #ff9a3d);
  color: white;

  padding: 14px 28px;
  border-radius: 40px;

  font-weight: 500;
  letter-spacing: 0.5px;

  transition: 0.3s;
}

/* hover effect */
.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,122,0,0.4);
}

/* =========================================
   CONTACT TEXT
========================================= */
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 12px;
  font-size: 14px;
  color: #ccc;
}

.footer-contact p i {
  width: 18px;
  color: #ff7a00;
  font-size: 15px;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-social a {
  width: 40px;
  height: 40px;

  border-radius: 50%;
  background: rgba(255,255,255,0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  font-size: 16px;

  transition: 0.3s ease;
}

.footer-social a:hover {
  background: #ff7a00;
  transform: translateY(-3px);
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;

  position: relative;
  width: fit-content;

  color: #ccc;
  margin-bottom: 12px;
  font-size: 14px;

  transition: 0.3s ease;
}

.footer-contact-link i {
  color: #ff7a00;
  font-size: 15px;
}

/* =========================================
   BOTTOM BAR
========================================= */

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}



 /* ===== GLOBAL PROFILE LAYOUT ===== */
.profile-page {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  padding: 40px;
  background: #f5f7fa;

  align-items: start; /* 🔥 THIS FIXES EVERYTHING */
   min-height: 650px;
}

/* ===== LEFT PROFILE CARD ===== */
/* ===== PROFILE CARD (PRO VERSION) ===== */
.profile-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 20px;
  width: 100%;
  max-width: 280px;

  display: flex;
  flex-direction: column;
  align-items: center;

  box-shadow: 0 12px 30px rgba(0,0,0,0.06);

  height: fit-content; /* 🔥 prevents stretch */
    position: sticky;
  top: 20px;
}
/* ===== TOP SECTION ===== */
.profile-top {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* AVATAR */
.avatar-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
  margin-bottom: 12px;
}

.avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg,#ff7a00,#ff9a3c);
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 32px;
  font-weight: 600;
  color: white;
}

/* CAMERA ICON */
.camera-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  background: black;
  color: white;
  border-radius: 50%;
  padding: 6px;
  font-size: 12px;
}

/* NAME */
#profile-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  text-align: center;
}

/* EMAIL */
.email-pill {
  background: #f1f3f5;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  color: #555;
  margin-bottom: 20px;
}

/* ===== BUTTONS ===== */
.profile-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* EDIT BUTTON */
.edit-profile-btn {
  width: 100%;
  padding: 12px;
  border: none;
  background: #111;
  color: white;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s;
}

.edit-profile-btn:hover {
  background: #333;
}

/* SIGN OUT (FIXED POSITION IN CARD) */
.signout-btn {
  text-align: center;
  color: #ff4d4f;
  font-size: 14px;
  cursor: pointer;
  padding: 8px;
}

.signout-btn:hover {
  text-decoration: underline;
}

/* ===== RIGHT CONTENT ===== */
.profile-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ===== TABS ===== */
.tabs{
  display:flex;
  gap:10px;

  overflow-x:auto;
  padding-bottom:6px;

  scrollbar-width:none;
}

.tabs::-webkit-scrollbar{
  display:none;
}

.tab {
  padding: 10px 18px;
  border: none;
  background: #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
}

.tab.active {
  background: #ff7a00;
  color: white;
}
.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* ===== ORDER CARD ===== */
.list-card {
  background: white;
  padding: 18px 20px;
  border-radius: 14px;
  margin-bottom: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);

  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* 🔥 important fix */
  gap: 20px; /* 🔥 fixes overlap */
}

/* LEFT SIDE */
.order-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.order-date {
  font-size: 12px;
  color: #888;
}

.order-left h4 {
  margin: 2px 0;
}

.order-items {
  font-size: 14px;
  color: #555;
}

/* RIGHT SIDE (STATUS + PRICE) */
.order-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px; /* 🔥 fixes overlap */
}

/* STATUS */
.status {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.status.completed {
  background: #e6f7ee;
  color: #0a8f5b;
}

.status.pending {
  background: #fff4e6;
  color: #cc7a00;
}

/* PRICE */
.order-total {
  text-align: right;
}

.order-total span {
  font-size: 12px;
  color: #888;
}

.order-total strong {
  font-size: 16px;
  display: block;
  margin-top: 3px;
}

/* ===== DOCUMENTS ===== */
.documents-section {
  background: white;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.doc-group {
  margin-bottom: 20px;
}

.doc-files{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(120px,1fr));
  gap:15px;
}

.doc-preview {
  width: 120px;
  text-align: center;
}

.preview-img {
  width: 100%;
  border-radius: 8px;
}

.preview-pdf {
  width: 100%;
  height: 100px;
  border-radius: 6px;
}

.doc-preview a {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: #ff7a00;
}

/* ===== EMPTY STATE ===== */
.empty-box {
  background: #f9fafb;
  min-height: 300px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  border-radius: 12px;
  text-align: center;
}

.shop-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  background: black;
  color: white;
  border-radius: 25px;
  text-decoration: none;
}





#orders-loading {
  text-align: center;
  padding: 30px;
  color: #666;
  font-size: 14px;
}

.loader-spinner {
  width: 30px;
  height: 30px;
  border: 3px solid #eee;
  border-top: 3px solid black;
  border-radius: 50%;
  margin: 0 auto 10px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.skeleton-card {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  border-radius: 12px;
  background: #fff;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.skeleton-left,
.skeleton-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.skeleton-box {
  height: 10px;
  border-radius: 6px;
  background: linear-gradient(90deg, #eee, #ddd, #eee);
  background-size: 200px 100%;
  animation: shimmer 1.2s infinite linear;
}

.skeleton-title {
  width: 120px;
  height: 14px;
}

.skeleton-text {
  width: 80px;
}

.skeleton-small {
  width: 60px;
}

@keyframes shimmer {
  0% { background-position: -200px 0; }
  100% { background-position: 200px 0; }
}





.pay-balance-btn {
  margin-top: 15px;
  padding: 12px 18px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg,#ff7a00,#ff9a3d);
  color: white;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
}




.notification-row.unread {

  border-left: 4px solid #ff7a00;

  background: rgba(255,122,0,0.06);
}

.notification-row.read {

  opacity: 0.82;
}

.notification-row {

  transition: 0.25s ease;
}

/* =========================
   RESERVATION INSTRUCTIONS
========================= */
.reservation-message {
  margin-top: 18px;
  padding: 14px 16px;

  background: #f8fbff;
  border: 1px solid #dbeafe;
  border-left: 4px solid #2563eb;

  border-radius: 12px;

  max-width: 600px;
}

.reservation-message-label {
  font-size: 13px;
  font-weight: 700;
  color: #1d4ed8;

  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.reservation-message-text {
  font-size: 14px;
  line-height: 1.6;
  color: #334155;

  white-space: pre-line;
}


.notif-badge {

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 20px;
  height: 20px;

  padding: 0 6px;

  border-radius: 999px;

  background: #ff3b30;
  color: white;

  font-size: 11px;
  font-weight: 600;

  margin-left: 8px;
}

.invoice-btn {

  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: 12px;

  padding: 10px 16px;

  border-radius: 10px;

  background: #111;
  color: white;

  font-size: 13px;
  font-weight: 600;

  transition: 0.25s ease;
}

.invoice-btn:hover {

  transform: translateY(-2px);

  background: #ff7a00;
}


.cart-icon {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #ff7a00;
  color: white;
  font-size: 11px;
  padding: 3px 6px;
  border-radius: 50%;
}

@media(max-width:768px){

  .services-hero{
    height:auto;
    padding:140px 20px 70px;
  }
  .services-hero h1{
  font-size:32px;
  line-height:1.3;
}

.hero-desc{
  font-size:15px;
}

}

@media(max-width:768px){

  .profile-page{
    margin-top:30px;
  }

}
.menu-toggle{
  color:white;
}


/* =========================================
   MOBILE PROFILE PAGE
========================================= */

@media(max-width:768px){

  .profile-page{
    grid-template-columns:1fr;

    padding:30px 16px 60px;

    gap:24px;
  }

  /* PROFILE CARD */
  .profile-card{
	   
    position:relative;

    top:auto;

    max-width:100%;

    padding:26px 20px;
	width:100%;
  }

  /* AVATAR */
  .avatar-wrapper{
    width:85px;
    height:85px;
  }

  /* TABS */
  .tabs{
    overflow-x:auto;

    padding-bottom:6px;

    scrollbar-width:none;
  }

  .tabs::-webkit-scrollbar{
    display:none;
  }

  .tab{
    white-space:nowrap;
    flex-shrink:0;
  }

  /* ORDER CARDS */
  .list-card{
    flex-direction:column;

    align-items:flex-start;

    padding:18px;
  }

  .order-right{
    width:100%;
    align-items:flex-start;
  }

  /* DOCUMENTS */
  .doc-files{
    grid-template-columns:1fr 1fr;
  }

  

  /* EMPTY BOX */
  .empty-box{
    padding:28px 20px;
  }

}


@media (max-width:768px){

  .profile-page{
    display:flex;
    flex-direction:column;

    padding:24px 16px 50px;
    gap:24px;
  }

  .profile-card{
    max-width:none;
    width:100%;

    position:relative;
    top:auto;
  }

  .profile-content{
    width:100%;
  }

}

@media (max-width:768px){

  .tabs{
    display:flex;
    overflow-x:auto;
    gap:8px;

    padding-bottom:10px;
  }

  .tab{
    white-space:nowrap;
    min-width:max-content;
  }

}

@media (max-width:768px){

  .services-hero{
    padding:120px 20px 50px;
  }

  .services-hero h1{
    font-size:36px;
  }

}

@media (max-width:768px){

  .profile-card{
    max-width:none;
    width:100%;
    margin:0 auto;
  }

}

@media (max-width:768px){

  .tab{
    font-size:14px;
    padding:10px 14px;
  }

}

