@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

html {
    background-color: #00b7ff;
    background-image: url("./large-triangles.svg");
}

html.financebg {
    background-image: url("../Finance/protruding-squares.svg");
}

/* Body styling */
.titleheading {
    padding: 20px;
    max-width: 75%;
    margin: 0 auto;
}

.formview {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #fff;
    /* White background */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 75%;
    margin: 0 auto;
}


h2 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: xx-large;
}

label {
    font-weight: bold;
    color: #333;
    /* Dark grey text */
}

/* Form input fields */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    /* Light grey border */
    border-radius: 5px;
    box-sizing: border-box;
}

/* Checkbox styling */
.checkbox-container {
    margin-bottom: 15px;
}

.checkbox-container label {
    font-weight: normal;
    color: #333;
    /* Dark grey text */
    margin-left: 5px;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 5px;
}

/* Submit button */
button {
    align-items: center;
    background-image: linear-gradient(144deg, #AF40FF, #5B42F3 50%, #00DDEB);
    border: 0;
    border-radius: 8px;
    box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
    box-sizing: border-box;
    color: #FFFFFF;
    display: flex;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 20px;
    justify-content: center;
    line-height: 1em;
    max-width: 100%;
    min-width: 140px;
    padding: 3px;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    cursor: pointer;
    width: 95%;
}

button:disabled {
    background-color: #cccccc !important;
    color: #888888 !important;
    cursor: not-allowed !important;
    opacity: 0.7;
}

button:active,
button:hover {
    outline: 0;
}

button span {
    background-color: rgb(5, 6, 45);
    padding: 16px 24px;
    border-radius: 6px;
    width: 100%;
    height: 100%;
    transition: 300ms;
}

button:hover span {
    background: none;
}

table {
    width: 100%;
    padding: 10px;
}

td {
    width: 16%;
}

/* Table styling */
.table-container {
    margin-top: 20px;
}

.table-container table {
    width: 100%;
    border-collapse: collapse;
}

.table-container th,
.table-container td {
    border: 1px solid #ccc;
    /* Light grey border */
    padding: 10px;
}

/* Table header */
.table-container th {
    background-color: #185aa0;
    /* Blue header */
    color: #fff;
    /* White text */
}

/* Table rows */
.table-container tr:nth-child(even) {
    background-color: #f2f2f2;
    /* Light grey background for even rows */
}

/* Total row */
.total-row {
    font-weight: bold;
}


/**
BREAK

*/

/* ShowProgram.css */
body {
    font-family: 'Roboto', Arial, sans-serif;
}

.container {
    text-align: center;
    margin-top: 100px;
}

input {
    padding: 10px;
    margin: 10px;
    width: 300px;
}

button {
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    text-align: center;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.footer {
    text-align: center;
    padding: 10px;
    background-color: #f1f1f1;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 14px;
}