/* ============================= */
/* Future Technologies Website - Style Sheet */
/* Team Members: [Your Team Names] */
/* Date: [Current Date] */
/* Filename: style.css */
/* ============================= */

/* ===== CSS Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
}

/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&family=Montserrat:wght@300;600&display=swap');

/* ===== Body & Wrapper ===== */
body {
    background: linear-gradient(to right, #8ac6e8, #0056b8);
    color: black;
}

/* ===== Table Styling ===== */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    border: 1px solid black;
    padding: 10px;
    text-align: center;
}

th {
    background-color: #0056b8;
    color: white;
}

/* Alternating row colors */
tbody tr:nth-child(odd) {
    background-color: #f0f0f0;
}

tbody tr:nth-child(even) {
    background-color: #d6e6f3;
}

/* ===== Form Styling ===== */
form {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
    width: 80%;
    margin: 20px auto;
}

fieldset {
    border: 2px solid #0056b8;
    padding: 15px;
    margin-bottom: 10px;
}

legend {
    font-weight: bold;
    color: #0056b8;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="submit"] {
    background-color: #0056b8;
    color: white;
    cursor: pointer;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
}

input[type="submit"]:hover {
    background-color: #004494;
}

/* ============================= */
/* ========== Mobile Styles (Up to 768px) ========== */
@media screen and (max-width: 768px) {
    /* Hide table for mobile */
    table {
        display: none;
    }

    /* Style form for mobile */
    form {
        width: 95%;
        padding: 15px;
    }
}
