/* Grid container for general prices */
.escooter-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
}

/* Each provider column */
.provider-column {
    flex: 1 1 20%; /* 5 columns on desktop */
    max-width: 150px; /* Restrict max width */
    margin: 10px;
    text-align: center;
}

/* Provider logo styling */
.provider-logo {
    max-width: 80px; /* Reduce logo size */
    margin-bottom: 10px;
}

/* Styling for the price table */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.price-table th, .price-table td {
    padding: 8px;
    text-align: center;
    border: 1px solid #ddd;
}

.price-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

/* Reduce logo size in price table */
.price-table .provider-logo {
    width: 40px;
    height: auto;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1024px) {
    .provider-column {
        flex: 1 1 30%; /* 3 columns on medium screens */
        max-width: 130px; /* Reduce max width */
    }
    .provider-logo {
        max-width: 60px; /* Adjust logo size */
    }

    .price-table th, .price-table td {
        font-size: 0.9rem; /* Reduce font size slightly */
        padding: 6px;
    }
}

@media (max-width: 768px) {
    .provider-column {
        flex: 1 1 45%; /* 2 columns on smaller screens */
        max-width: 120px;
    }

    .provider-logo {
        max-width: 50px; /* Smaller logo */
    }

    .price-table th, .price-table td {
        font-size: 0.85rem; /* Further reduce font size */
        padding: 5px;
    }
}

@media (max-width: 480px) {
    .provider-column {
        flex: 1 1 100%; /* 1 column per row on mobile */
        max-width: 100%;
    }

    .provider-logo {
        max-width: 35px; /* Smallest logo size */
    }

    .price-table th, .price-table td {
        font-size: 0.7rem; /* Smallest font size */
        padding: 3px;
    }
}

/* Styling for the package table */
.package-table {
    width: 100%;
	border: none !important;
    text-align: center; /* Align all text to the center */
    border-collapse: collapse; /* Remove frame around the table */
}

/* Provider logo styling */
.provider-logo {
    max-width: 80px; /* Adjust logo size for desktop */
    margin-bottom: 10px;
}

/* Styling the package text */
.package-table td {
    padding: 10px;
    font-size: 14px; /* Reduce the font size */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .provider-logo {
        max-width: 50px; /* Reduce logo size for tablets */
    }

    .package-table td {
        font-size: 12px; /* Reduce font size for tablets */
    }
}

@media (max-width: 480px) {
    .provider-logo {
        max-width: 40px; /* Reduce logo size for mobile */
    }

    .package-table td {
        font-size: 10px; /* Further reduce font size for mobile */
    }
}

/* Styling for the voucher section */
.voucher-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

/* Each voucher item */
.voucher-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
}

/* Logo container */
.provider-logo-container {
    margin-bottom: 10px;
}

/* Adjust logo size */
.provider-logo {
    max-width: 100px;
    height: auto;
}

/* Voucher details */
.voucher-details {
    font-size: 16px;
    line-height: 1.5;
    padding: 10px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .voucher-item {
        width: 100%; /* Stack vertically on smaller screens */
    }
    
    .provider-logo {
        max-width: 80px;
    }
    
    .voucher-details {
        font-size: 14px;
    }
}

.voucher-btn {
    display: inline-block;
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.voucher-btn:hover {
    background-color: #0056b3;
}

.voucher-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.voucher-table th, .voucher-table td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
}

/* Table for app download buttons */
.app-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.app-table th, .app-table td {
    text-align: center;
    padding: 10px;
}

.app-table img {
    max-width: 150px;
    display: block;
    margin: 5px auto;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .app-table th, .app-table td {
        display: block;
        width: 100%;
    }

    .app-table img {
        max-width: 120px;
    }
}
