/* Architectural Studio - Jade Teal & Energetic Amber Theme */

:root {
  --primary-color: #00695C;
  --secondary-color: #FFA726;
  --primary-dark: #004D40;
  --primary-light: #26A69A;
  --secondary-dark: #F57C00;
  --secondary-light: #FFB74D;
  --text-dark: #212529;
  --text-light: #F5F5F5;
  --transition-speed: 0.3s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
.display-2, .display-3, .display-4, .display-5, .display-6 {
  font-weight: 700;
  letter-spacing: -0.5px;
}

.lead {
  font-weight: 400;
  opacity: 0.95;
}

/* Navbar Styles */
.navbar {
  background: linear-gradient(180deg, rgba(0, 105, 92, 0.95) 0%, rgba(0, 105, 92, 0.8) 100%) !important;
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: all var(--transition-speed) ease;
  z-index: 1000;
}

.navbar.scrolled {
  background: rgba(0, 105, 92, 0.98) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  color: #FFFFFF !important;
  font-weight: 700;
  transition: all var(--transition-speed) ease;
}

.navbar-brand:hover {
  color: var(--secondary-color) !important;
  transform: scale(1.05);
}

.navbar-brand .bi {
  color: var(--secondary-color) !important;
  font-size: 1.8rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all var(--transition-speed) ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: all var(--transition-speed) ease;
  transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5) !important;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 167, 38, 0.5) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Hero Section */
.hero-video-container {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-video-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-video-container > * {
  position: relative;
  z-index: 2;
}

.hero-video-container .text-white {
  color: #FFFFFF !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-video-container .display-2 {
  animation: fadeInUp 1s ease-out;
}

.hero-video-container .lead {
  animation: fadeInUp 1.2s ease-out;
  color: #FFFFFF !important;
}

/* Buttons */
.btn {
  border-radius: 50px;
  font-weight: 600;
  transition: all var(--transition-speed) ease;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--secondary-color) !important;
  color: var(--text-dark) !important;
  box-shadow: 0 4px 15px rgba(255, 167, 38, 0.3);
}

.btn-primary:hover {
  background: var(--secondary-dark) !important;
  color: #FFFFFF !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 167, 38, 0.4);
}

.btn-secondary {
  background: var(--primary-color) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 15px rgba(0, 105, 92, 0.3);
}

.btn-secondary:hover {
  background: var(--primary-dark) !important;
  color: #FFFFFF !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 105, 92, 0.4);
}

.btn-outline-secondary {
  border: 2px solid var(--primary-color) !important;
  color: var(--primary-color) !important;
  background: transparent !important;
}

.btn-outline-secondary:hover {
  background: var(--primary-color) !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

.btn-light {
  background: #FFFFFF !important;
  color: var(--primary-color) !important;
}

.btn-light:hover {
  background: var(--text-light) !important;
  color: var(--primary-dark) !important;
}

.btn-lg {
  font-size: 1.1rem;
  padding: 1rem 2.5rem !important;
}

.btn-sm {
  padding: 0.4rem 1rem !important;
  font-size: 0.875rem;
}

/* Cards */
.card {
  border: none !important;
  border-radius: 15px;
  overflow: hidden;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-body {
  padding: 2rem;
}

.hover-card {
  transition: all var(--transition-speed) ease;
  cursor: pointer;
}

.hover-card:hover {
  background: var(--primary-light) !important;
  color: #FFFFFF !important;
}

.hover-card:hover .text-muted,
.hover-card:hover .text-primary {
  color: #FFFFFF !important;
}

.facility-card {
  border-left: 4px solid var(--secondary-color) !important;
  transition: all var(--transition-speed) ease;
}

.facility-card:hover {
  border-left-width: 8px !important;
  padding-left: 2rem !important;
}

/* Icons */
.bi {
  transition: all var(--transition-speed) ease;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.text-muted {
  color: #6C757D !important;
}

/* Backgrounds */
.bg-primary {
  background: var(--primary-color) !important;
}

.bg-secondary {
  background: var(--secondary-color) !important;
}

.bg-light {
  background: #F8F9FA !important;
}

.bg-white {
  background: #FFFFFF !important;
}

.bg-dark {
  background: var(--text-dark) !important;
}

/* Section Styles */
section {
  padding: 5rem 0;
  position: relative;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.pt-4 {
  padding-top: 2rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pb-3 {
  padding-bottom: 1.5rem !important;
}

.pb-4 {
  padding-bottom: 2rem !important;
}

/* Images */
.img-fluid {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-speed) ease;
}

.img-fluid:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.rounded {
  border-radius: 15px !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-3 {
  border-radius: 10px !important;
}

/* Forms */
.form-control,
.form-select {
  border: 2px solid #E0E0E0;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: all var(--transition-speed) ease;
  background: #FFFFFF;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(0, 105, 92, 0.15) !important;
  background: #FFFFFF;
}

.form-control-lg,
.form-select-lg {
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
}

.form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-check-input {
  border: 2px solid #E0E0E0;
  cursor: pointer;
}

.form-check-input:checked {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.form-check-label {
  cursor: pointer;
  color: var(--text-dark);
}

.invalid-feedback {
  display: none;
  color: #DC3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
  border-color: #DC3545;
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-select:invalid ~ .invalid-feedback {
  display: block;
}

.was-validated .form-control:valid,
.was-validated .form-select:valid {
  border-color: #28A745;
}

/* Alerts */
.alert {
  border-radius: 10px;
  border: none;
  padding: 1rem 1.5rem;
  font-weight: 500;
}

.alert-success {
  background: #D4EDDA !important;
  color: #155724 !important;
}

.d-none {
  display: none !important;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.timeline .rounded-circle {
  width: 20px;
  height: 20px;
  background: var(--secondary-color);
  position: absolute;
  left: -9px;
  top: 5px;
  border: 3px solid #FFFFFF;
}

/* Carousel */
.carousel {
  border-radius: 15px;
  overflow: hidden;
}

.carousel-item {
  transition: transform 0.6s ease-in-out;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 105, 92, 0.8) !important;
  border-radius: 50%;
  opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
  background: rgba(0, 105, 92, 0.95) !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 60%;
}

/* Accordion */
.accordion-item {
  border: 2px solid #E0E0E0 !important;
  border-radius: 10px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-button {
  background: #F8F9FA !important;
  color: var(--primary-color) !important;
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  border: none !important;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-color) !important;
  color: #FFFFFF !important;
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: none !important;
  border-color: transparent !important;
}

.accordion-button::after {
  filter: brightness(0) saturate(100%);
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.accordion-body {
  padding: 1.5rem;
  background: #FFFFFF;
  color: var(--text-dark);
}

/* Tables */
.table {
  border-radius: 10px;
  overflow: hidden;
}

.table-bordered {
  border: 2px solid #E0E0E0 !important;
}

.table thead {
  background: var(--primary-color) !important;
  color: #FFFFFF !important;
}

.table tbody tr {
  transition: all var(--transition-speed) ease;
}

.table tbody tr:hover {
  background: rgba(0, 105, 92, 0.05) !important;
}

/* Tabs */
.nav-tabs {
  border-bottom: 2px solid #E0E0E0;
}

.nav-tabs .nav-link {
  border: none !important;
  color: var(--text-dark) !important;
  padding: 1rem 1.5rem;
  font-weight: 600;
  transition: all var(--transition-speed) ease;
}

.nav-tabs .nav-link:hover {
  color: var(--primary-color) !important;
  border-bottom: 3px solid var(--secondary-color) !important;
}

.nav-tabs .nav-link.active {
  color: var(--primary-color) !important;
  background: transparent !important;
  border-bottom: 3px solid var(--primary-color) !important;
}

.tab-content {
  padding: 2rem 0;
}

.tab-pane {
  animation: fadeIn 0.5s ease;
}

/* Badge */
.badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  background: var(--secondary-color) !important;
  color: var(--text-dark) !important;
}

/* Sticky Elements */
.sticky-top {
  position: sticky !important;
  top: 0;
  z-index: 1020;
}

.position-sticky {
  position: sticky !important;
  top: 80px;
}

/* Shadows */
.shadow-sm {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

.shadow-lg {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Borders */
.border-0 {
  border: none !important;
}

.border-top {
  border-top: 1px solid #E0E0E0 !important;
}

/* Utilities */
.overflow-hidden {
  overflow: hidden !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.text-center {
  text-align: center !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-decoration-none {
  text-decoration: none !important;
  color: inherit;
}

.text-decoration-none:hover {
  color: var(--primary-color) !important;
}

.list-unstyled {
  list-style: none;
  padding-left: 0;
}

.d-flex {
  display: flex !important;
}

.d-block {
  display: block !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.gap-3 {
  gap: 1rem !important;
}

/* Margins and Paddings */
.mt-1 { margin-top: 0.25rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mb-lg-0 { margin-bottom: 0 !important; }
.mb-md-0 { margin-bottom: 0 !important; }
.me-1 { margin-right: 0.25rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }
.ms-3 { margin-left: 1rem !important; }
.ms-4 { margin-left: 1.5rem !important; }
.ms-auto { margin-left: auto !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.my-4 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
.p-0 { padding: 0 !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-5 { padding-left: 3rem !important; padding-right: 3rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.ps-4 { padding-left: 1.5rem !important; }
.ps-lg-5 { padding-left: 3rem !important; }
.pe-lg-4 { padding-right: 1.5rem !important; }
.pe-lg-5 { padding-right: 3rem !important; }

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  animation: fadeIn 1s ease-out;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

/* Scroll Animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.scroll-animate.active {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.9);
}

footer a {
  color: rgba(255, 255, 255, 0.8) !important;
  transition: all var(--transition-speed) ease;
}

footer a:hover {
  color: var(--secondary-color) !important;
  text-decoration: none;
}

footer .bi {
  color: var(--secondary-color) !important;
}

footer .list-unstyled li {
  margin-bottom: 0.5rem;
}

/* Social Media Icons */
.bi-facebook:hover { color: #1877F2 !important; }
.bi-instagram:hover { color: #E4405F !important; }
.bi-twitter:hover,
.bi-twitter-x:hover { color: #1DA1F2 !important; }
.bi-youtube:hover { color: #FF0000 !important; }

/* Responsive Design */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(0, 105, 92, 0.98);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 10px;
  }
  
  .nav-link {
    padding: 0.75rem 1rem !important;
  }
  
  .display-2 {
    font-size: 2.5rem;
  }
  
  .display-3 {
    font-size: 2rem;
  }
  
  .display-4 {
    font-size: 1.75rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .btn-lg {
    padding: 0.75rem 2rem !important;
    font-size: 1rem;
  }
  
  .ps-lg-5,
  .pe-lg-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .order-lg-1,
  .order-lg-2 {
    order: 0 !important;
  }
  
  .col-lg-6,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10 {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  .display-2 {
    font-size: 2rem;
  }
  
  .fs-3 {
    font-size: 1.5rem !important;
  }
  
  .fs-5 {
    font-size: 1rem !important;
  }
  
  .hero-video-container {
    min-height: 80vh;
  }
  
  .btn-lg {
    padding: 0.6rem 1.5rem !important;
    font-size: 0.95rem;
  }
  
  .card-body {
    padding: 1.5rem;
  }
  
  .text-md-start,
  .text-md-end {
    text-align: center !important;
  }
  
  .col-md-6,
  .col-md-7 {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .px-4,
  .px-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .display-2 {
    font-size: 1.75rem;
  }
  
  .display-4 {
    font-size: 1.5rem;
  }
  
  section {
    padding: 2rem 0;
  }
  
  .gap-3 {
    gap: 0.5rem !important;
  }
  
  .col-6 {
    margin-bottom: 1rem;
  }
  
  .accordion-button {
    padding: 1rem;
    font-size: 0.95rem;
  }
  
  .table-responsive {
    font-size: 0.875rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .btn,
  footer,
  .carousel-control-prev,
  .carousel-control-next {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    color: #000;
  }
  
  .container {
    max-width: 100%;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .btn,
  .card,
  .form-control {
    border: 2px solid currentColor;
  }
  
  .nav-link::after {
    height: 3px;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #F5F5F5;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Selection */
::selection {
  background: var(--secondary-color);
  color: var(--text-dark);
}

::-moz-selection {
  background: var(--secondary-color);
  color: var(--text-dark);
}

/* Focus Visible */
:focus-visible {
  outline: 3px solid var(--secondary-color);
  outline-offset: 2px;
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #FFFFFF;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Hover Effects for Cards */
.hover-lift {
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Pulse Animation */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Text Truncate */
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Aspect Ratio */
.ratio {
  position: relative;
  width: 100%;
}

.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}

.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

/* Visually Hidden */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}