/* ============================================
   MODERN SMS BOMBER - INTERACTIVE UI DESIGN
   ============================================ */

/* CSS Variables for Easy Customization - Facebook Blue Theme */
:root {
  --primary: #1877f2;
  --primary-dark: #166fe5;
  --primary-light: #42a5f5;
  --success: #10b981;
  --success-dark: #059669;
  --warning: #f59e0b;
  --danger: #ef4444;
  --bg: #f8fafc;
  --bg-card: #ffffff;
  --text: #1e293b;
  --text-light: #64748b;
  --border: #e2e8f0;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
  --radius: 12px;
  --radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
#mainct {
  padding: 0;
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================
   HERO SECTION - Info Card
   ============================================ */
#bomberInfo {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: var(--bg-card);
  overflow: hidden;
  margin: 2rem auto;
  max-width: 900px;
  transition: var(--transition);
  animation: fadeInUp 0.6s ease-out;
}

#bomberInfo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

#bomberInfo .card-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  padding: 1.5rem;
  text-align: center;
}

#bomberInfo .card-header h1 {
  margin: 0;
  color: white;
  font-weight: 700;
  letter-spacing: -0.5px;
}

#bomberInfo .card-body {
  padding: 2rem;
  background: var(--bg-card);
}

/* ============================================
   FEATURE CARDS
   ============================================ */
#bws1,
#bws2 {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: var(--bg-card);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

#bws1 {
  animation-delay: 0.1s;
}

#bws2 {
  animation-delay: 0.2s;
}

#bws1:hover,
#bws2:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

#bws1 .card-header,
#bws2 .card-header {
  background: linear-gradient(135deg, var(--success) 0%, var(--success-dark) 100%);
  border: none;
  padding: 1.25rem;
  text-align: center;
}

#bws1 .card-header h2,
#bws2 .card-header h2 {
  margin: 0;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

#bws1 .card-body,
#bws2 .card-body {
  padding: 1.5rem;
  background: var(--bg-card);
}

.bw6 {
  border: none;
}

/* ============================================
   BUTTONS - Modern & Interactive
   ============================================ */
.btn {
  border: none;
  border-radius: var(--radius);
  padding: 0.625rem 1.5rem;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  color: white;
}

.btn svg {
  fill: white !important;
  stroke: white;
  stroke-width: 2.5;
  stroke-linejoin: round;
  stroke-linecap: round;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.8)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.3));
  font-weight: 900;
}

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

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

.btn-success {
  background: linear-gradient(135deg, var(--success) 0%, var(--success-dark) 100%);
  color: white;
}

.btn-text {
  color: white !important;
  font-weight: 900 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-success .btn-text {
  color: white !important;
  font-weight: 900 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-success:hover svg {
  fill: white !important;
  stroke: white;
  stroke-width: 2.5;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.8)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.3));
}

.btn-success:hover .btn-text {
  color: white !important;
  font-weight: 900 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-success:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
}

.btn-primary .btn-text {
  color: white !important;
  font-weight: 900 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-primary:hover svg {
  fill: white !important;
  stroke: white;
  stroke-width: 2.5;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.8)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.3));
}

.btn-primary:hover .btn-text {
  color: white !important;
  font-weight: 900 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

.btn-lg svg {
  width: 22px;
  height: 22px;
}

/* ============================================
   MAIN SMS BOMBER CARD
   ============================================ */
#smsbomber {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  background: var(--bg-card);
  overflow: hidden;
  margin: 2rem auto;
  max-width: 700px;
  transition: var(--transition);
  animation: fadeInUp 0.8s ease-out;
}

#smsbomber:hover {
  box-shadow: 0 25px 50px rgba(24, 119, 242, 0.25);
}

#smsbomber .card-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  padding: 1.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#smsbomber .card-header::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

#smsbomber .card-header h2 {
  margin: 0;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
}

#smsbomber .card-body {
  padding: 2.5rem;
  background: var(--bg-card);
}

/* ============================================
   FORM INPUTS - Modern Design
   ============================================ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Input Group - Fixed for Desktop and Mobile */
.input-group {
  display: flex;
  flex-direction: row;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.input-group:focus-within {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* Input Group Prepend - Country Code */
.input-group-prepend {
  display: flex;
  margin-right: 0;
}

#country_code_div {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
  color: white !important;
  padding: 0.875rem 1.25rem;
  font-weight: 600;
  border: none !important;
  border-right: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: var(--radius) 0 0 var(--radius);
  min-width: fit-content;
}

#country_code {
  margin-right: 0.5rem;
  display: inline-block;
}

/* Form Control - Main Input */
.form-control {
  flex: 1;
  min-width: 0;
  border: 2px solid var(--border) !important;
  border-left: none !important;
  border-right: 2px solid var(--border) !important;
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  transition: var(--transition);
  background: white;
  border-radius: 0 var(--radius) var(--radius) 0;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-control:focus {
  outline: none !important;
  border-color: var(--primary) !important;
  border-left: none !important;
  box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.1);
  z-index: 1;
}

/* Standalone form controls (like count input) */
.form-group .form-control:not(.input-group .form-control) {
  border: 2px solid var(--border) !important;
  border-radius: var(--radius);
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  transition: var(--transition);
  background: white;
  width: 100%;
  box-shadow: var(--shadow);
}

.form-group .form-control:not(.input-group .form-control):focus {
  outline: none !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.1), var(--shadow-md);
  transform: translateY(-2px);
}

#mobile,
#count {
  font-weight: 500;
  letter-spacing: 1px;
}

#mobile::placeholder,
#count::placeholder {
  color: var(--text-light);
  letter-spacing: 0.5px;
  opacity: 0.7;
}

/* ============================================
   ALERTS - Modern Styling
   ============================================ */
.alert {
  border: none;
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.alert.bg-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
  color: white;
  box-shadow: var(--shadow-md);
}

.alert.bg-warning {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
  color: white;
  box-shadow: var(--shadow-md);
}

/* ============================================
   PROGRESS BAR
   ============================================ */
.progress {
  height: 28px;
  border-radius: 14px;
  background: #e2e8f0;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-bar {
  background: linear-gradient(90deg, var(--success) 0%, var(--success-dark) 100%);
  border-radius: 14px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: white;
  font-size: 0.875rem;
  transition: width 0.3s ease;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
  position: relative;
  overflow: hidden;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: progressShine 2s infinite;
}

/* ============================================
   SMS COUNTER
   ============================================ */
#cnt_sms {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin: 1.5rem 0;
  animation: pulse 1.5s ease-in-out infinite;
  text-shadow: 0 2px 10px rgba(24, 119, 242, 0.3);
}

#cnt_sms img {
  width: 60px;
  margin-left: 1rem;
  animation: rocket 2s ease-in-out infinite;
}

/* ============================================
   INFO CARDS - How To Use
   ============================================ */
#htu,
#hts {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: var(--bg-card);
  overflow: hidden;
  margin-bottom: 2rem;
  transition: var(--transition);
  animation: fadeInUp 0.6s ease-out;
}

#htu:hover,
#hts:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

#htu .card-header,
#hts .card-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  padding: 1.5rem;
  text-align: center;
}

#htu .card-header h2,
#hts .card-header h2 {
  margin: 0;
  color: white;
  font-weight: 600;
}

#htu .card-body,
#hts .card-body {
  padding: 2rem;
  background: var(--bg-card);
}

#htu ul,
#hts ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#htu ul li,
#hts ul li {
  padding: 1rem 0 1rem 2.5rem;
  position: relative;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

#htu ul li:last-child,
#hts ul li:last-child {
  border-bottom: none;
}

#htu ul li::before,
#hts ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--success) 0%, var(--success-dark) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.875rem;
  box-shadow: var(--shadow);
}

#htu ul li:hover,
#hts ul li:hover {
  padding-left: 3rem;
  color: var(--primary);
}

/* ============================================
   FEATURE CARDS (Bottom)
   ============================================ */
.card.bg-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  height: 100%;
  overflow: hidden;
}

.card.bg-primary:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.card.bg-primary .card-body {
  padding: 2rem;
  color: white;
}

.card.bg-primary .card-title {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}

.card.bg-primary .card-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.contact {
  color: white;
  font-weight: 600;
  text-decoration: underline;
  transition: var(--transition);
}

.contact:hover {
  color: #fbbf24;
  text-decoration: none;
}

/* ============================================
   ORIGIN & APK CARDS
   ============================================ */
#ofs,
#sba {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: var(--bg-card);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

#ofs:hover,
#sba:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

#ofs .card-header,
#sba .card-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  padding: 1.5rem;
  text-align: center;
}

#ofs .card-header h2,
#sba .card-header h2 {
  margin: 0;
  color: white;
  font-weight: 600;
}

#ofs .card-body,
#sba .card-body {
  padding: 1.5rem;
  background: var(--bg-card);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.fs25 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.fs20 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
}

.fs15 {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
}

.card-text {
  line-height: 1.7;
  color: var(--text);
}

h3.fs20 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text);
  font-weight: 600;
}

/* ============================================
   UTILITIES
   ============================================ */
.minh {
  min-height: 350px;
}

/* Removed .text-center and .container styling to avoid conflicts with Bootstrap */

/* Links */
a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.05);
  }
}

@keyframes rocket {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(-5deg);
  }
  75% {
    transform: translateY(-10px) rotate(5deg);
  }
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@keyframes progressShine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes animate {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
  }
}

/* Keep existing animations for compatibility */
@keyframes timerWidth {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes slideDown {
  from { top: -4rem; }
  to { top: 15%; }
}

@keyframes slideUp {
  from { top: 15%; }
  to { top: -4rem; }
}

@keyframes shake {
  0%, 100%, 20%, 70% { transform: rotate(0); }
  30% { transform: rotate(-15deg); }
  40% { transform: rotate(15deg); }
  50% { transform: rotate(-10deg); }
  60% { transform: rotate(10deg); }
}

@keyframes rotate1 {
  from { transform: rotateX(35deg) rotateY(-45deg) rotateZ(0); }
  to { transform: rotateX(35deg) rotateY(-45deg) rotateZ(1turn); }
}

@keyframes rotate2 {
  from { transform: rotateX(50deg) rotateY(10deg) rotateZ(0); }
  to { transform: rotateX(50deg) rotateY(10deg) rotateZ(1turn); }
}

@keyframes rotate3 {
  from { transform: rotateX(35deg) rotateY(55deg) rotateZ(0); }
  to { transform: rotateX(35deg) rotateY(55deg) rotateZ(1turn); }
}

.logos {
  width: 100px;
  height: 100px;
  position: absolute;
  margin-top: 8rem;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  background-color: #fff;
  border-radius: 50%;
  animation: 0.5s infinite alternate zoomInOutOpacity;
  box-shadow: var(--shadow-lg);
}

@keyframes zoomInOutOpacity {
  from {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  to {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.5;
  }
}

  .bomb-container {
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-areas: 'bimg bcount bcount bcount bcount' 'bimg bnum bnum bnum bnum' 'bimg bsub bsub bsub bsub';
    grid-template-columns: 30% 60%;
    background: #fff;
    margin: 2rem auto;
    width: 82%;
  padding: 0.8rem 0.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.div2 {
  position: relative;
  width: 15rem;
  height: 15rem;
  margin: 2rem auto;
  transform-style: preserve-3d;
  perspective: 800px;
}

  .div2 .div3 {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border-bottom: 3px solid red;
}

  .div2 .div3:first-child {
    border-bottom: 3px solid red;
  animation: 1.15s linear -0.8s infinite rotate1;
}

.div2 .div3:nth-child(2) {
    border-bottom: 3px solid green;
  animation: 1.15s linear -0.4s infinite rotate2;
}

.div2 .div3:nth-child(3) {
    border-bottom: 3px solid #00f;
    animation: 1.15s linear infinite rotate3;
}

.div1 {
    grid-area: bimg;
  position: relative;
  margin: 0.5rem auto;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  :root {
    --radius: 10px;
    --radius-lg: 12px;
  }

  .fs25 {
    font-size: 1.5rem;
  }

  .fs20 {
    font-size: 1.1rem;
  }

  .fs15 {
    font-size: 0.9rem;
  }

  .btn-lg {
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
  }

  #smsbomber .card-body,
  #bomberInfo .card-body,
  #htu .card-body,
  #hts .card-body {
    padding: 1.5rem;
}

#cnt_sms {
    font-size: 2rem;
  }

  /* Mobile Input Group - Keep horizontal but compact */
  .input-group {
    flex-direction: row;
    border-radius: var(--radius);
  }

  .input-group-prepend {
    width: auto;
    margin-right: 0;
    flex-shrink: 0;
  }

  #country_code_div {
    width: auto !important;
    min-width: 70px;
    border-radius: var(--radius) 0 0 var(--radius) !important;
    border-right: none !important;
    padding: 0.75rem 0.875rem !important;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    font-size: 0.9rem;
  }

  #country_code_div.input-group-text {
    border-radius: var(--radius) 0 0 var(--radius) !important;
    border-right: none !important;
  }

  .input-group .form-control {
    flex: 1;
    min-width: 0;
    border: 2px solid var(--border) !important;
    border-left: none !important;
    border-right: 2px solid var(--border) !important;
    border-radius: 0 var(--radius) var(--radius) 0 !important;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }

  .input-group .form-control:focus {
    border-left: none !important;
    border-right: 2px solid var(--primary) !important;
  }

  /* Standalone inputs on mobile */
  .form-group .form-control:not(.input-group .form-control) {
    width: 100%;
    padding: 0.875rem 1rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Remove default Bootstrap card borders */
.card {
  border: none;
}

/* Override Bootstrap input-group styles */
.input-group-text {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

/* Specific override for country code div */
#country_code_div.input-group-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
  color: white !important;
  padding: 0.875rem 1.25rem !important;
  border: none !important;
  border-right: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  border-radius: var(--radius) 0 0 var(--radius) !important;
}

.input-group > .form-control:not(:first-child) {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.input-group > .form-control:not(:last-child) {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

/* Ensure input-group-prepend doesn't add unwanted borders */
.input-group-prepend .input-group-text {
  border-right: none !important;
}

/* Fix for Bootstrap's default input-group border */
.input-group > .input-group-prepend > .input-group-text {
  border-right: none !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}