table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

#table-pricing{
    width: 80%;
}

#main-block{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

/* Define column widths */
th:nth-child(1),
td:nth-child(1) {
    width: 40%; /* Wider column for features */
}

th:nth-child(2),
td:nth-child(2),
th:nth-child(3),
td:nth-child(3),
th:nth-child(4),
td:nth-child(4) {
    width: 20%; /* Equal fixed width for other columns */
}

th {
    background: #F7F7F7;
    /*font-weight: bold;*/
    text-transform: uppercase;
    /*font-size: 14px;*/
    text-align: center;
}

td strong {
    font-weight: bold;
    display: block;
}

tr:last-child td {
    border-bottom: none;
}

/* Feature column styling */
td:first-child {
    width: 35%;
}

/* Align numeric values to the right */
td:not(:first-child) {
    text-align: center;
}

/* Custom styling for unavailable features */
.unavailable {
    color: red;
    font-size: 18px;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    table {
        font-size: 14px;
    }
    th, td {
        padding: 10px;
    }
}

.feature-name{
    background: #efe226;
    padding-left: 10px;
    
}

td:hover {
    background-color: rgba(0, 0, 0, 0.02); /* Light background on hover */
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.05); /* Subtle shadow effect */
    transition: all 0.3s ease-in-out; /* Smooth transition */
}

/* Optional: Add a slight scale effect for better interaction */
td:hover {
    transform: scale(1.02);
}

.footer {
    background-color: #3e5871;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

.footer-left, .footer-center, .footer-right {
    flex: 1;
    text-align: left;
    
}

.footer-right {
    flex:1 ;
    text-align: right;
}

.footer-left{
    width: 50%;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 18px;
}

.logo img {
    width: 30px;
    margin-right: 10px;
}

.social-icons a img {
    width: 24px;
    margin: 10px 5px;
    transition: transform 0.3s ease;
}

.social-icons a img:hover {
    transform: scale(1.1);
}

.footer-center ul {
    list-style: none;
    padding: 0;
    width:30%;
}

/* Optional: Style for better scrolling appearance */
.table-container::-webkit-scrollbar {
    height: 8px;
}

.table-container {
    width: 100%;
    overflow-x: auto; /* Enables horizontal scrolling */    
    justify-content: center;  
    display: flex
;
}

.table-container::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
}
.footer-center ul li {
    margin-bottom: 8px;
    width:30%;
}

.footer-center ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-center ul li a:hover {
    color: #f0c040;
}

#top-banner{
    color: #425b76;
}

.footer-right h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.footer-right a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.footer-right a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 10px;
    margin-top: 20px;
    font-size: 14px;
}
