/* Franky SaaS Master Build v4.0 - Fully Locked */

body {
    background: linear-gradient(to bottom right, #002b55, #005daa);
    min-height: 100vh;
    font-family: "WF Visual Sans", Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

/* WHOIS main box */
.whois {
    background-image: url('../images/whois_globe.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    border-radius: 16px;
    padding: 90px 40px 40px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    text-align: center;
    margin: 50px auto;
    max-width: 850px;
    min-height: 400px;
}

/* Internal width container */
.whois-inner {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Hide TLD checkboxes entirely */
.whois div.tlds {
    display: none !important;
}

/* Search box fully expanded */
.whois div.search input[type="text"] {
    width: 100%;
    padding: 32px 40px;
    font-size: 26px;
    border-radius: 32px;
    border: 2px solid #cccccc;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.whois div.search input[type="text"]:focus {
    border-color: #007bff;
    box-shadow: 0 4px 16px rgba(0, 123, 255, 0.25);
}

/* Flexbox layout for buttons */
.whois-buttons {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

/* Button styles */
.whois button, 
.whois input[type="submit"], 
.whois .btn {
    flex: 1 1 30%;
    border-radius: 26px;
    padding: 14px 20px;
    font-size: 18px;
    transition: 0.3s all;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    min-width: 0;
}

.whois .btn-success {
    background: linear-gradient(45deg, #00c853, #4caf50);
    color: white;
}

.whois .btn-success:hover {
    background: linear-gradient(45deg, #009624, #388e3c);
}

.whois .btn-secondary {
    background: #007bff;
    color: white;
}

.whois .btn-secondary:hover {
    background: #0056b3;
}

/* Pricing table toggle button */
.toggle-pricing-btn {
    margin: 25px 0;
    font-size: 17px;
    color: #007bff;
    cursor: pointer;
    text-decoration: underline;
}

/* Pricing table */
table.table {
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    border-collapse: collapse;
    margin: 0 auto;
}

table.table th,
table.table td {
    padding: 18px;
    border: 1px solid #e0e0e0;
    text-align: left;
    font-size: 16px;
}

.order-summary-table {
    width: 100%;
    border-collapse: collapse;
}

.order-summary-table th,
.order-summary-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.order-total {
    text-align: right;
    font-size: 20px;
    margin-top: 20px;
}

/* 4-step driver bar style */
.card-steps {
    padding: 20px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 12px;
}
/* === Start: Fix Footer Text Visibility === */
div.footer,
div.footer * {
  color: #ffffff !important;
}

div.footer a {
  color: #ffffff !important;
  text-decoration: underline;
}
/* === End: Fix Footer Text Visibility === */
/* === Bgin Buttons Green on Second Form Page === */
/* Style for green "Add to Cart" buttons */
button.btn.btn-light.btn-sm.form-group {
  background-color: #28a745 !important;  /* Green */
  border-color: #28a745 !important;
  color: #fff !important;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

button.btn.btn-light.btn-sm.form-group:hover {
  background-color: #218838 !important;  /* Darker green on hover */
  border-color: #1e7e34 !important;
}
/* === End: Change buttons green ===*/
/* === Begin: Mobile Button Stack for Domain Search === */
@media (max-width: 768px) {
  .btn-group {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 20px;
  }

  .btn-group .btn {
    width: 100%;
    padding: 10px 12px;
    font-size: 16px;
    border-radius: 6px;
  }
}
/* === End: Mobile Button Stack for Domain Search === */

/* === Begin: Thinner Buttons on All Screen Sizes === */
.btn-group .btn {
  padding: 10px 18px;
  font-size: 16px;
  border-radius: 6px;
}
/* === End: Thinner Buttons on All Screen Sizes === */
/* === Begin: Style 'Order Selected' Button Green === */
button.btn-light.float-right {
  background-color: #28a745 !important;  /* Bootstrap green */
  color: #fff !important;
  border: none !important;
  font-weight: bold;
  transition: background-color 0.2s ease-in-out;
}

button.btn-light.float-right:hover {
  background-color: #218838 !important;
}
/* === End: Style 'Order Selected' Button Green === */

