/* General Page */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #001f3f, #007bff); /* dark blue to aqua */
    margin: 0;
    padding: 0;
    color: #333;
}

/* Centered Container */
.container {
    width: 60%;
    margin: 40px auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Headings */
h2, h3 {
    text-align: center;
    color: #001f3f;
}

/* Inputs & Textareas */
input[type="text"], input[type="email"], input[type="password"], textarea {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    box-sizing: border-box;
}

/* Buttons */
button {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 20px;
    margin: 5px;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
}
button:hover {
    background: #0056b3;
}

/* Proposal Sections */
.section-item {
    padding: 15px;
    border: 2px dashed #007bff;
    margin-bottom: 12px;
    list-style: none;
    border-radius: 10px;
    background: #f9fcff;
}

/* Proposal List */
ul {
    padding: 0;
}
ul li {
    margin: 8px 0;
}
ul li a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}
ul li a:hover {
    color: #0056b3;
}
