﻿h1 {
    text-align: center;
    font-size: 48px;
    color: #232c3d;
}

.container {
    width: 100%;
    margin: 40px auto;
    padding: 10px;
    border-radius: 5px;
    background: white;
    box-shadow: 0px 10px 40px 0px rgba(47,47,47,.1);
}

input[type="text"] {
    padding: 10px;
    margin: 10px auto;
    border-radius: 5px;
    border: 1px solid lightgrey;
    background: none;
    width: 274px;
    color: black;
}

    input[type="text"]:focus {
        outline: none;
    }

input[type="Submit"] {
    margin: 10px auto;
    display: block;
    width: 40%;
    height: 40px;
    border: 1px solid;
    border-radius: 25px;
    font-size: 18px;
    cursor: pointer;
}

    input[type="Submit"]:hover {
        background: #347B98;
        color: #e9f4fb;
        transition: .5s;
    }

#multiple {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.controls {
    width: 294px;
    margin: 15px auto;
}

.add {
    padding: 5px;
    border: 1px solid;
    border-radius: 25px;
    cursor: pointer;
}

.remove {
    float: right;
    padding: 5px;
    border: 1px solid;
    border-radius: 25px;
    cursor: pointer;
}

.controls button i {
    margin-right: 5px;
}

tbody th {
    background-color: #092834;
    color: #fff;
    text-align: center;
}
/* Style for a rounded button */
.rounded-button {
    padding: 1em 2em;
    border: 0;
    border-radius: 30px;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}
    /* Hover effect (optional) */
    .rounded-button:hover {
        background-color: #6d6f75; /* Change background color on hover */
    }

.remove:hover, .add:hover {
    background: #2691d9;
    color: #e9f4fb;
    transition: .5s;
}

.modalBackground {
    background-color: Black;
    filter: alpha(opacity=90);
    opacity: 0.8;
}

.modalPopup {
    background-color: #FFFFFF;
    border-width: 3px;
    border-style: solid;
    border-color: black;
    padding-top: 10px;
    padding-left: 10px;
    width: 300px;
    height: 140px;
}

.button-container {
    text-align: center; /* Center the buttons within the container */
}

    .button-container button {
        margin: 5px; /* Add some space between the buttons */
        /* Add additional styling as needed */
    }
