﻿/* General Styles */

/* Top Menu Table - No Spacing or Background */
.top-menu {
    width: 100%;
    border-collapse: collapse; /* Removes spacing between table cells */
    table-layout: auto /* Ensures equal column width */
}

    /* Table Cells - No Padding or Margins */
    .top-menu td {
        padding: 0;
        margin: 0;
        border: none;
        text-align: center;
    }

/* Logo Column - Keep Original Size */
.logo-column img {
    display: block;
    height: auto;
    width: auto; /* Preserve original dimensions */
    max-height: none;
    max-width: none;
}

/* Menu Buttons - No Space Between */
.top-menu button {
    width: 100%;
    border: none;
    padding: 10px 0; /* Adjust padding for touchability */
    font-size: 16px;
    cursor: pointer;
    background: none; /* Removes button background */
}

    /* Button Hover Effect */
    .top-menu button:hover {
        background: #ddd;
    }


/* Content Table - No Spacing */
.content-table {
    border-collapse: collapse; /* Removes spacing between table cells */
}

/* Left Column - Text Section */
.text-column {
    padding: 0;
    vertical-align: top; /* Aligns text to the top */
}

.text-section {
    font-family: Arial, sans-serif; /* Ensures Verdana is applied */
    text-align: left;
    font-size: 12px;
    padding: 0px;
}

/* Right Column - Image Section */
.image-column {
    padding: 0;
    text-align: right;
}

    /* Preserve Image Dimensions in Right Column */
    .image-column img {
        height: auto;
        width: auto; /* Preserve original dimensions */
        display: block;
    }


/* Footer */
footer {
    background: #5A51D6;
    color: white;
    padding: 0px;
    margin-top: 0px;
}

.noBorder {
    border: 0px;
    padding: 0;
    margin: 0;
    border-collapse: collapse;
}
