
.price-tag {
    /* position: absolute; */
    bottom: -10px;
    left: 4px;
    background-color: #fff;
    padding: 5px 10px;
    font-weight: bold;
    border: white !important;
    border-radius: 5px;
}

.duration-tag {
    position: absolute;
    bottom: -10px;
    right: 4px;
    background-color: #fff;
    padding: 5px 10px;
    font-weight: bold;
    border: white !important;
    border-radius: 5px;
}

.action-buttons .btn {
    padding: 10px 20px;
    font-weight: 500;
}

.stripe-payment-box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px;
    margin-top: 20px;
}

.activities-list {
    padding: 0 1rem;
}

.activity-item {
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.2s ease;
    padding: 0.45rem !important;
}

.activity-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.activity-icon {
    background: #e9ecef;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-icon i {
    font-size: 1.1rem;
    color: #495057;
}

.activity-content h6 {
    color: #212529;
    font-size: 1rem;
}

.activity-content p {
    font-size: 0.9rem;
    line-height: 1.5;
}