/* Base Styles */

body {

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    line-height: 1.6;

    color: #333;

    background-color: #f9f9f9;

    margin: 0;

    padding: 0;

}



.container {

    max-width: 1200px;

    margin: 0 auto;

    padding: 20px;

}



/* Header */

header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 30px;

    padding-bottom: 20px;

    border-bottom: 2px solid #3498db;

}



header h1 {

    margin: 0;

    color: #2c3e50;

}



/* Buttons */

.button {

    display: inline-block;

    padding: 10px 15px;

    background-color: #3498db;

    color: white;

    text-decoration: none;

    border-radius: 5px;

    border: none;

    cursor: pointer;

    font-size: 16px;

    transition: background-color 0.3s;

}



.button:hover {

    background-color: #2980b9;

}



.button-small {

    padding: 5px 10px;

    font-size: 14px;

    margin-left: 5px;

}



.button.delete {

    background-color: #e74c3c;

}



.button.delete:hover {

    background-color: #c0392b;

}



.button.cancel {

    background-color: #95a5a6;

}



.button.cancel:hover {

    background-color: #7f8c8d;

}



/* Job List */

.job-list {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));

    gap: 20px;

}



.job-card {

    background: white;

    border-radius: 8px;

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

    padding: 20px;

    transition: transform 0.2s, box-shadow 0.2s;

}



.job-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

}



.job-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 15px;

    padding-bottom: 10px;

    border-bottom: 1px solid #eee;

}



.job-header h2 {

    margin: 0;

    color: #2c3e50;

}



.job-details {

    color: #555;

}



.job-details p {

    margin: 8px 0;

}



/* Forms */

.job-form {

    background: white;

    padding: 20px;

    border-radius: 8px;

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

    max-width: 600px;

    margin: 0 auto;

}



.form-group {

    margin-bottom: 20px;

}



.form-group label {

    display: block;

    margin-bottom: 5px;

    font-weight: bold;

    color: #2c3e50;

}



.form-group input[type="text"],

.form-group input[type="tel"],

.form-group input[type="email"],

.form-group input[type="date"],

.form-group select,

.form-group textarea {

    width: 100%;

    padding: 10px;

    border: 1px solid #ddd;

    border-radius: 5px;

    font-size: 16px;

    box-sizing: border-box;

}



.form-group textarea {

    height: 100px;

    resize: vertical;

}



.form-actions {

    display: flex;

    justify-content: space-between;

    margin-top: 30px;

}



/* Responsive */

@media (max-width: 768px) {

    .job-list {

        grid-template-columns: 1fr;

    }

    

    header {

        flex-direction: column;

        align-items: flex-start;

    }

    

    .button {

        margin-top: 10px;

    }

}
