/* SoRa */
body {
    font-family: Source Sans Pro, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #fff;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
header {
    background-color: #fff;
    color: #666;
    text-align: center;
    width: 240;
}
.blue-bar {
    background-color: #0970b9; /* Your desired color */
    height: 20px; /* Adjust as needed */
}
footer {
    background-color: #c2c5c7;
    color: #4E5256;
    padding: 20px;
    text-align: center;
    margin-top: auto;
}
.form-container {
    width: 50%;
    margin: 20px auto;
}
.message-container {
    width: 50%;
    margin: 100px auto;
    background-color: #eee;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
form {
    background-color: #eee;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.form-group {
    flex: 1;
    margin-right: 10px;
    margin-bottom: 20px;
    vertical-align: top; /* Ensures alignment at the top */
}
label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}
.light-label {
    font-weight: normal;
    display: inline;
}
.form-row {
    display: flex;
    justify-content: space-between;
}
input[type="text"],
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}
input[type="email"],
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}
input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
input[type="submit"]:hover {
    background-color: #45a049;
}
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    margin-bottom: 20px;
    font-family: "Courier New", Courier, monospace;
    resize: none;
}
.copy-clipboard-btn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}
.copy-clipboard-btn:hover {
    background-color: #0056b3;
}
.start-page-btn {
    background-color: #0970b9;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}
.start-page-btn:hover {
    background-color: #0860a8;
}
.button-holder{
    display: block;
    text-align: center;
}
.notification{
    background-color: #ffff00;
    text-align: center;
}