/* simple css from google search for form */

/* font color in grey gibb logo is #4a4b4b */

/* Basic Form Styling */
form {
    max-width: 500px; /* Limit form width for better readability */
    margin: 20px auto; /* Center the form and add some spacing */
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Label Styling */
label {
    display: block; /* Make labels take up full width for better alignment */
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

/* Input Field Styling */
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
    width: 100%; /* Make inputs take full width of parent */
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    font-size: 16px;
}

/* Focus State for Inputs */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    border-color: #007bff; /* Highlight border on focus */
    outline: none; /* Remove default outline */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Button Styling */
button[type="submit"] {
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease; /* Smooth transition on hover */
}

button[type="submit"]:hover {
    background-color: #0056b3;
}
.gc_header {
	text-align:center;
}

p {
	font: 16px/24px Pebble Montserrat Regular,sans-serif;
	padding-left: 5px;
    padding-right: 5px;
	font-size:1.3em;
}

.smallp {
	font-size: 0.9em;
    font-style: italic;
    color: burlywood;
}

.kaf_submit {
	padding: 10px;
	font-size: 1.3em;
	background-color: burlywood;
}
table {
	display:inline;
	border-spacing:unset;
}

th {
	text-align:left;
	font: 16px/24px Pebble Montserrat Regular,sans-serif;
	padding:5px;
	border-bottom: gray solid 1px;
	border-right: gray solid 1px;
	font-weight:bold;
}

td {
	text-align:left;
	font: 16px/24px Pebble Montserrat Regular,sans-serif;
	padding:5px;
	border-bottom: gray solid 1px;
	border-right: gray solid 1px;
}

.iframe-container {
    display: flex; /* Use flexbox for easy side-by-side alignment */
    justify-content: space-around; /* Distribute space evenly around items */
    align-items: flex-start; /* Align items to the top */
    width: 100%;
    margin-top: 20px;
    }

.iframe-wrapper {
    flex: 1; /* Allow wrappers to grow and shrink */
    margin: 10px; /* Add some spacing between iframes */
    border: 1px solid #ccc; /* Optional: Add a border for visibility */
    padding: 5px;
    }

iframe {
    width: 100%; /* Make iframes fill their parent wrapper */
    height: 400px; /* Set a fixed height or adjust as needed */
    border: none; /* Remove default iframe border */
    }
	
.highlightdiv
	{
	text-align:center;
	background-color: burlywood;
	padding: 5px;
	font-size: 1.5em;
	}
	
.rounded-table {
    border-collapse: separate; /* Important for border-radius to work on the table */
    border-spacing: 0; /* Removes space between cells if using 'separate' */
    border: 1px solid #ccc;
    border-radius: 10px; /* Adjust the value for desired roundness */
    overflow: hidden; /* Ensures content doesn't spill outside rounded corners */
}

.rounded-table th,
.rounded-table td {
    padding: 8px;
    border-left: 1px solid #ccc;
    border-top: 1px solid #ccc;
}

/* Specific rounding for top-left and top-right corners of the header */
.rounded-table th:first-child {
    border-top-left-radius: 10px;
}

.rounded-table th:last-child {
    border-top-right-radius: 10px;
}

/* Specific rounding for bottom-left and bottom-right corners of the last row */
.rounded-table tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

.rounded-table tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}
.error {
	color:red;
	font-weight:bold;
}