﻿
:root {
    --primary-color: #3f51b5;
    --secondary-color: #f44336;
    --light-gray: #f5f5f5;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
}

.job-container {
    margin: 0 auto;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.card {
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    background: white;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.card-header {
    padding: 16px 20px;
    background-color: white;
    color: darkblue;
    display: flex;
    align-items: center;
}

    .card-header i {
        margin-right: 10px;
        font-size: 18px;
    }

    .card-header h2 {
        margin: 0;
        font-size: 18px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
    }

.card-body {
    padding: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
}

    table th {
        background-color: #f2f2f2;
        padding: 12px 15px;
        text-align: left;
        font-weight: 600;
        color: #444;
        border-bottom: 2px solid #ddd;
    }

    table td {
        padding: 12px 15px;
        border-bottom: 1px solid #eee;
    }

    table tr:nth-child(even) {
        background-color: #fafafa;
    }

    table tr:hover {
        background-color: #f5f5f5;
        transition: var(--transition);
    }

.action-buttons {
    display: flex;
    margin-top: 30px;
    gap: 20px;
}

    .action-buttons .col {
        flex: 1;
    }

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    color: white;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

    .btn i {
        margin-right: 8px;
    }

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #303f9f 100%);
}

    .btn-primary:hover {
        background: linear-gradient(135deg, #303f9f 0%, #1a237e 100%);
        box-shadow: 0 5px 15px rgba(63, 81, 181, 0.4);
        transform: translateY(-2px);
    }

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d32f2f 100%);
}

    .btn-secondary:hover {
        background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
        box-shadow: 0 5px 15px rgba(244, 67, 54, 0.4);
        transform: translateY(-2px);
    }

 @media (max-width: 768px) {
    .action-buttons {
        flex-direction: column;
    }
}

