﻿#job-selection {
    text-align: center;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.job-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 20px;
}

.job-option {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 20px;
    width: 220px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

    .job-option:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-color: #4CAF50;
    }

.job-emoji {
    font-size: 60px;
    display: block;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.job-option:hover .job-emoji {
    transform: scale(1.1);
}

.job-option h3 {
    margin: 15px 0;
    font-size: 18px;
    color: #333;
}

.job-option p {
    margin: 10px 0;
    font-size: 15px;
    color: #666;
}

#work-container {
    margin-top: 30px;
}

#work-progress-bar {
    width: 100%;
    height: 25px;
    background-color: #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
}

#work-progress {
    width: 0%;
    height: 100%;
    background-color: #4CAF50;
    transition: width 0.5s ease-in-out;
    box-shadow: 0 2px 5px rgba(76,175,80,0.3);
}

#work-status {
    margin-top: 15px;
    font-style: italic;
    color: #555;
    font-size: 16px;
}
