.card {
    width: 350px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.category {
    background-color: #f0f0f0;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    color: #333;
}

.status {
    background-color: #e0f7e6;
    color: #0a6522;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    border: 1px solid #c3e6cb;
}

.title {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
}

.description {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 5px;
}

.progress-bar {
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    margin-bottom: 15px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #000;
    border-radius: 4px;
}

.details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.detail-item {
    display: flex;
    align-items: center;
}

.icon {
    margin-right: 5px;
    font-size: 16px;
}

.green-text {
    color: #0a6522;
}

.blue-text {
    color: #0066cc;
}

.detail-content {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 12px;
    color: #666;
}

.detail-value {
    font-weight: bold;
    font-size: 14px;
}

.owner {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.owner-name {
    font-weight: bold;
    color: #333;
    margin-left: 5px;
}

.buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    flex: 1;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.btn-outline {
    border: 1px solid #ccc;
    background: white;
    color: #333;
}

.btn-primary {
    background: #4361ee;
    color: white;
    border: none;
}
