/* style.css */
body {
    font-family: "Anuphan", serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: #fff;
}

header {
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

header p {
    margin: 10px 0 0;
    font-size: 1.2rem;
    font-weight: 300;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.dream-company {
    text-align: center;
    margin: 20px 0;
}

.dream-company img {
    width: 100px;
    height: auto;
    border: 3px solid #fff;
}

.dream-company h2 {
    margin: 15px 0;
    font-size: 1.8rem;
}

.checklist {
    margin-top: 20px;
}

.checklist h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.checklist ul {
    list-style: none;
    padding: 0;
}

.checklist ul li {
    background: rgba(255, 255, 255, 0.2);
    margin: 10px 0;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checklist ul li input[type="checkbox"] {
    margin-right: 15px;
}

footer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
}

span.status {
    display: flex;
}

.status.completed:before {
    content: '\2713';
    color: #28a745;
    font-weight: bold;
    margin-right: 8px;
    width: 20px;
    height: 20px;
    display: flex;
    background: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.status.failed:before {
    content: '\2717';
    color: #dc3545;
    font-weight: bold;
    margin-right: 8px;
    width: 20px;
    height: 20px;
    display: flex;
    background: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.status.pending:before,
.status.following-up:before {
    content: '\2013';
    color: #ffd100;
    font-weight: bold;
    margin-right: 8px;
    width: 20px;
    height: 20px;
    display: flex;
    background: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.status.in-progress:before {
    content: '\2022';
    color: #17a2b8;
    font-weight: bold;
    margin-right: 8px;
    width: 20px;
    height: 20px;
    display: flex;
    background: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
