/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

header {
    background-color: #007bff;
    color: white;
    padding: 20px;
    text-align: center;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}

h1, h3 {
    margin: 0;
    padding: 5px 0;
}

/* Main Container */
.customer-container {
    max-width: 1200px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.customer {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Columns */
.column {
    flex: 1 1 calc(25% - 20px);
    background: #f9f9f9;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
}

.column h3 {
    margin-bottom: 10px;
    color: #007bff;
}

.column p {
    font-size: 16px;
    line-height: 1.5;
}

/* Form Section Styling */
.form-section {
    margin-bottom: 20px;
    background-color: #ffffff;
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	text-align: center; /* Centers the content inside this div */
}
.save-button {
    background-color: #007BFF; /* Blue color */
    color: white; /* White text */
    border: none; /* Remove default border */
    padding: 10px 20px; /* Add padding for size */
    font-size: 16px; /* Adjust font size */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

.save-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .column {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .column {
        flex: 1 1 100%;
    }
}

/* Table Styles */
table {
    margin: 20px auto; /* Center the table and add spacing */
    width: 80%; /* Set table width */
    border-collapse: collapse; /* Merge borders for a cleaner look */
    border: 1px solid #ccc; /* Border color for the entire table */
    font-family: Arial, sans-serif; /* Ensure consistent font */
    background-color: #f9f9f9; /* Light background */
}

table th {
 /*   background-color: #007bff; /* Blue background for headers */
    color: #000000; /* White text for headers */
    text-align: left; /* Align text to the left */
    padding: 10px; /* Add spacing inside header cells */
    border: 1px solid #ccc; /* Border between header cells */
    font-weight: bold; /* Make headers bold */
}

table td {
    padding: 10px; /* Add spacing inside data cells */
    text-align: left; /* Align text to the left */
    border: 1px solid #ccc; /* Border between data cells */
}

table tbody tr:nth-child(even) {
    background-color: #f2f2f2; /* Light gray for even rows */
}

table tbody tr:nth-child(odd) {
    background-color: #fff; /* White for odd rows */
}

/* Responsive Table */
@media screen and (max-width: 768px) {
    table {
        width: 100%; /* Full width on smaller screens */
    }
    table th, table td {
        font-size: 14px; /* Smaller font size for better readability */
    }
}
