/**
 * Transfer Booking Pro - Frontend Styles
 */

/* Booking Form Styles */
.tbp-booking-form {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.tbp-booking-form h2 {
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
}

/* Multi-Step Form Styles */
.tbp-multi-step-form {
    position: relative;
}

/* Step Progress */
.tbp-step-progress {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.tbp-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    max-width: 200px;
}

.tbp-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e1e8ed;
    z-index: 1;
}

.tbp-step.active:not(:last-child)::after,
.tbp-step.completed:not(:last-child)::after {
    background: #3498db;
}

.tbp-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e1e8ed;
    color: #7f8c8d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.tbp-step.active .tbp-step-number {
    background: #3498db;
    color: white;
}

.tbp-step.completed .tbp-step-number {
    background: #27ae60;
    color: white;
}

.tbp-step-label {
    font-size: 14px;
    font-weight: 600;
    color: #7f8c8d;
    text-align: center;
    transition: color 0.3s ease;
}

.tbp-step.active .tbp-step-label {
    color: #3498db;
}

.tbp-step.completed .tbp-step-label {
    color: #27ae60;
}

/* Step Content */
.tbp-step-content {
    min-height: 400px;
}

.tbp-step-header {
    text-align: center;
    margin-bottom: 30px;
}

.tbp-step-header h3 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 10px;
}

.tbp-step-header p {
    color: #7f8c8d;
    font-size: 16px;
}

/* Single Row Form (Step 1) */
.tbp-form-row-single {
    display: flex;
    gap: 15px;
    align-items: end;
    flex-wrap: nowrap;
    justify-content: space-between;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    min-height: 80px;
}

.tbp-form-row-single .tbp-form-group {
    flex: 1;
    min-width: 120px;
    margin-bottom: 0;
}

.tbp-form-row-single .tbp-form-group.tbp-location-input {
    flex: 2;
    min-width: 180px;
}

.tbp-form-row-single .tbp-form-group:last-child {
    flex: 0 0 auto;
    min-width: 140px;
}

.tbp-form-row-single label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #34495e;
}

.tbp-form-row-single input,
.tbp-form-row-single select {
    height: 50px;
    font-size: 16px;
    border: 2px solid #e1e8ed;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.tbp-form-row-single input:focus,
.tbp-form-row-single select:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.tbp-next-btn {
    height: 50px;
    padding: 0 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tbp-next-btn:hover {
    background: linear-gradient(135deg, #2980b9, #1f4e79);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

/* Vehicle Selection Styles */
.tbp-vehicles-container {
    position: relative;
}

.tbp-vehicles-loading {
    text-align: center;
    padding: 40px;
    color: #7f8c8d;
}

.tbp-vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.tbp-vehicle-card {
    background: white;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tbp-vehicle-card:hover {
    border-color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tbp-vehicle-card.selected {
    border-color: #27ae60;
    background: #f8fff8;
}

.tbp-vehicle-card.unavailable {
    opacity: 0.5;
    cursor: not-allowed;
}

.tbp-vehicle-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.tbp-vehicle-name {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.tbp-vehicle-price {
    font-size: 20px;
    font-weight: 700;
    color: #27ae60;
}

.tbp-vehicle-type {
    background: #3498db;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
}

.tbp-vehicle-capacity {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 10px;
}

.tbp-vehicle-description {
    color: #34495e;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.tbp-vehicle-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tbp-vehicle-features li {
    color: #7f8c8d;
    font-size: 12px;
    padding: 2px 0;
    position: relative;
    padding-left: 15px;
}

.tbp-vehicle-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.tbp-vehicle-image {
    width: 100%;
    height: 150px;
    background: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f8c8d;
    font-size: 14px;
}

/* Selected Vehicle Summary */
.tbp-selected-vehicle-summary {
    background: #f8f9fa;
    border: 1px solid #e1e8ed;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
}

.tbp-selected-vehicle-summary h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 16px;
}

.tbp-vehicle-summary-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tbp-vehicle-summary-info {
    flex: 1;
}

.tbp-vehicle-summary-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.tbp-vehicle-summary-details {
    color: #7f8c8d;
    font-size: 14px;
}

.tbp-vehicle-summary-price {
    font-size: 18px;
    font-weight: 700;
    color: #27ae60;
}

/* Step Navigation */
.tbp-step-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #e1e8ed;
}

.tbp-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.tbp-btn-primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.tbp-btn-primary:hover {
    background: linear-gradient(135deg, #2980b9, #1f4e79);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.tbp-btn-secondary {
    background: #95a5a6;
    color: white;
}

.tbp-btn-secondary:hover {
    background: #7f8c8d;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(149, 165, 166, 0.3);
}

.tbp-btn-success {
    background: #27ae60;
    color: white;
}

.tbp-btn-success:hover {
    background: #229954;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

/* WhatsApp Section */
.tbp-whatsapp-section {
    background: #f8f9fa;
    border: 1px solid #e1e8ed;
    border-radius: 6px;
    padding: 20px;
    margin: 20px 0;
}

.tbp-whatsapp-section h4 {
    color: #2c3e50;
    margin: 0 0 10px 0;
    font-size: 16px;
}

.tbp-whatsapp-section p {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 15px;
}

.whatsapp-icon {
    margin-right: 8px;
}

/* Booking Confirmation Page */
.tbp-booking-confirmation-page {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin: 20px 0;
    animation: slideIn 0.4s ease;
}

.tbp-confirmation-success {
    text-align: center;
    margin-bottom: 40px;
}

.tbp-success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: bold;
    color: white;
    margin: 0 auto 20px;
    animation: bounceIn 0.6s ease;
}

.tbp-confirmation-success h2 {
    color: #2c3e50;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.tbp-confirmation-success p {
    color: #7f8c8d;
    font-size: 18px;
    margin: 0;
}

.tbp-pnr-display {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px solid #27ae60;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
}

.tbp-pnr-label {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.tbp-pnr-code {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    font-family: 'Courier New', monospace;
    background: white;
    padding: 15px 25px;
    border-radius: 8px;
    border: 2px solid #e74c3c;
    margin-bottom: 20px;
    display: inline-block;
    letter-spacing: 2px;
}

.tbp-copy-pnr {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tbp-copy-pnr:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.tbp-confirmation-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.tbp-info-box {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid #3498db;
}

.tbp-info-box h4 {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.tbp-info-box p {
    color: #7f8c8d;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.tbp-confirmation-actions {
    text-align: center;
}

.tbp-new-booking {
    background: #95a5a6;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tbp-new-booking:hover {
    background: #7f8c8d;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
    .tbp-booking-confirmation-page {
        padding: 20px;
        margin: 10px 0;
    }
    
    .tbp-confirmation-success h2 {
        font-size: 24px;
    }
    
    .tbp-pnr-code {
        font-size: 24px;
        padding: 10px 15px;
    }
    
    .tbp-confirmation-info {
        grid-template-columns: 1fr;
    }
    
    .tbp-info-box {
        padding: 15px;
    }
}

/* Google Maps Autocomplete Styles */
.pac-container {
    background-color: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: inherit;
    z-index: 9999 !important;
}

.pac-item {
    padding: 12px 16px;
    border-bottom: 1px solid #f1f3f4;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.pac-item:hover {
    background-color: #f8f9fa;
}

.pac-item:last-child {
    border-bottom: none;
}

.pac-item-query {
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.pac-matched {
    font-weight: 700;
    color: #3498db;
}

.pac-icon {
    margin-right: 8px;
    width: 16px;
    height: 16px;
}

/* Fix for Google Maps autocomplete z-index issues */
.pac-container:after {
    display: none !important;
}

/* Prevent Google Maps from creating duplicate elements */
.gmp-internal-google-attribution,
.gmp-internal-back-button,
.gmp-internal-dialog,
.gmp-internal-basic-disclosure,
.gmp-internal-basic-disclosure-section,
.gmp-internal-attribution,
.gmp-internal-element-support-verification,
.gmp-internal-link-button,
.gmp-internal-rating,
.gmp-internal-tabbed-layout,
.gmp-internal-place-opening-hours,
.gmp-internal-place-rating-summary,
.gmp-internal-place-basic-info,
.gmp-internal-menu,
.gmp-internal-place-review,
.gmp-internal-lightbox,
.gmp-internal-status-text,
.gmp-internal-circular-loader,
.gmp-internal-place-carousel,
.gmp-internal-place-search-list-item,
.gmp-map,
.gmp-place-autocomplete,
.gmp-basic-place-autocomplete,
.gmp-place-search,
.gmp-place-text-search-request,
.gmp-place-nearby-search-request,
.gmp-place-details,
.gmp-place-details-compact,
.gmp-place-details-place-request,
.gmp-place-details-location-request,
.gmp-place-content-config,
.gmp-place-standard-content,
.gmp-place-all-content,
.gmp-place-media,
.gmp-place-address,
.gmp-place-rating,
.gmp-place-type,
.gmp-place-price,
.gmp-place-accessible-entrance-icon,
.gmp-place-open-now-status,
.gmp-place-attribution,
.gmp-place-website,
.gmp-place-phone-number,
.gmp-place-opening-hours,
.gmp-place-summary,
.gmp-place-type-specific-highlights,
.gmp-place-reviews,
.gmp-place-plus-code,
.gmp-place-feature-list {
    display: none !important;
}

.tbp-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.tbp-form-row .tbp-form-group {
    flex: 1;
}

.tbp-form-group {
    margin-bottom: 20px;
}

.tbp-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #34495e;
    font-size: 14px;
}

.tbp-form-group label .required {
    color: #e74c3c;
    margin-left: 3px;
}

.tbp-form-group input,
.tbp-form-group select,
.tbp-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.tbp-form-group input:focus,
.tbp-form-group select:focus,
.tbp-form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.tbp-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.tbp-form-group .tbp-help-text {
    font-size: 12px;
    color: #7f8c8d;
    margin-top: 5px;
}

/* Google Maps Autocomplete */
.tbp-location-input {
    position: relative;
}

.tbp-location-input .pac-container {
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
    margin-top: 5px;
}

.tbp-location-input .pac-item {
    padding: 10px 15px;
    border-bottom: 1px solid #ecf0f1;
    cursor: pointer;
}

.tbp-location-input .pac-item:hover {
    background-color: #f8f9fa;
}

.tbp-location-input .pac-item-query {
    font-weight: 600;
    color: #2c3e50;
}

/* Price Display */
.tbp-price-display {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: 20px 0;
    font-size: 18px;
    font-weight: 600;
}

.tbp-price-display .price-amount {
    font-size: 24px;
    margin-left: 10px;
}

/* Submit Button */
.tbp-submit-btn {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tbp-submit-btn:hover {
    background: linear-gradient(135deg, #229954, #27ae60);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.tbp-submit-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Loading Spinner */
.tbp-loading {
    display: none;
    text-align: center;
    margin: 20px 0;
}

.tbp-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: tbp-spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes tbp-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success/Error Messages */
.tbp-message {
    padding: 15px 20px;
    border-radius: 6px;
    margin: 20px 0;
    font-weight: 500;
}

.tbp-message.success {
    background: #d5f4e6;
    color: #27ae60;
    border: 1px solid #a9dfbf;
}

.tbp-message.error {
    background: #fadbd8;
    color: #e74c3c;
    border: 1px solid #f1948a;
}

.tbp-message.info {
    background: #d6eaf8;
    color: #3498db;
    border: 1px solid #aed6f1;
}

/* Booking Details Styles */
.tbp-booking-details {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tbp-booking-header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 20px;
    text-align: center;
}

.tbp-booking-header h3 {
    margin: 0;
    font-size: 24px;
}

.tbp-booking-content {
    padding: 30px;
}

.tbp-booking-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.tbp-info-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #3498db;
}

.tbp-info-item strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tbp-info-item span {
    color: #34495e;
    font-size: 16px;
}

/* Status Badges */
.tbp-status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tbp-status-badge.status-pending {
    background: #f39c12;
    color: white;
}

.tbp-status-badge.status-confirmed {
    background: #27ae60;
    color: white;
}

.tbp-status-badge.status-cancelled {
    background: #e74c3c;
    color: white;
}

.tbp-status-badge.status-completed {
    background: #3498db;
    color: white;
}

/* Booking List Styles */
.tbp-booking-list {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tbp-booking-item {
    padding: 20px;
    border-bottom: 1px solid #ecf0f1;
    transition: background-color 0.3s ease;
}

.tbp-booking-item:hover {
    background: #f8f9fa;
}

.tbp-booking-item:last-child {
    border-bottom: none;
}

.tbp-booking-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.tbp-booking-reference {
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

.tbp-booking-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    font-size: 14px;
}

.tbp-booking-meta-item {
    color: #7f8c8d;
}

.tbp-booking-meta-item strong {
    color: #34495e;
    display: block;
    margin-bottom: 3px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tbp-form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .tbp-booking-info {
        grid-template-columns: 1fr;
    }
    
    .tbp-booking-meta {
        grid-template-columns: 1fr;
    }
    
    .tbp-booking-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    /* Multi-step form responsive */
    .tbp-step-progress {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .tbp-step:not(:last-child)::after {
        display: none;
    }
    
    .tbp-form-row-single {
        flex-direction: column;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .tbp-form-row-single .tbp-form-group {
        min-width: auto;
        flex: 1;
    }
    
    .tbp-form-row-single .tbp-form-group.tbp-location-input {
        flex: 1;
    }
    
    .tbp-vehicles-grid {
        grid-template-columns: 1fr;
    }
    
    .tbp-step-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .tbp-step-navigation .tbp-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .tbp-booking-form {
        padding: 15px;
    }
    
    .tbp-step-header h3 {
        font-size: 20px;
    }
    
    .tbp-vehicle-card {
        padding: 15px;
    }
    
    .tbp-vehicle-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Print Styles */
@media print {
    .tbp-booking-form,
    .tbp-booking-details,
    .tbp-booking-list {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .tbp-submit-btn {
        display: none;
    }
}
