﻿/* General Page Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f9f9f9;
    color: #333;
}

/* Header Styling */
h1 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    color: #34495e;
    margin-top: 30px;
}

/* Form Styling */
form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Form Inputs */
label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

input[type="text"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
    resize: vertical; /* Allow vertical resizing only */
}

textarea {
    min-height: 120px; /* Ensures a comfortable default height */
}

/* Submit Button */
button {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: #fff;
    background-color: #3498db;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #2980b9;
}

/* iFrame */
iframe {
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-top: 10px;
    width: 1300px;
    height: 1000px;
}

/* Assertions Section */
.assertions-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.assertions-header h2 {
    margin: 0;
    font-size: 18px;
    color: #34495e;
}

.add-assertion-button {
    font-size: 12px;
    padding: 3px 10px;
    background-color: #2ecc71;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: auto;
    margin-left: auto;
    text-align: center;
}

.add-assertion-button:hover {
    background-color: #27ae60;
}

/* Assertion Row */
.assertion-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.assertion-input {
    width: 45%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}

.delete-assertion-button {
    font-size: 14px;
    padding: 5px;
    color: #e74c3c;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.3s;
    width: auto;
}

.delete-assertion-button:hover {
    color: #c0392b;
}

.form-container {
    display: flex;
    gap: 20px;
}

.form-container form {
    flex: 1;
}

/* Responsive Design */
@media (max-width: 600px) {
    form {
        padding: 15px;
    }

    input[type="text"], textarea, button {
        font-size: 14px;
    }
}

.profile-container {
    max-width: 1260px;
    margin: 0 auto 20px auto;
    padding: 10px 20px;
    background: transparent; /* Remove white box */
    text-align: center;
}

.profile-row {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center; /* center horizontally */
}

.profile-row label {
    font-size: 14px;
    font-weight: bold;
    color: #555;
}

.profile-row select {
    width: 300px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
    background-color: white;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}