/* Activity detail page specific styles */

.activity-map {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
}

.activity-header {
    background: linear-gradient(135deg, #2563eb, #10b981);
    color: white;
    border-radius: 15px 15px 0 0;
    padding: 30px;
}

.course-header {
    background: linear-gradient(135deg, #2563eb, #10b981);
}

.event-header {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.share-buttons {
    margin-top: 20px;
}

.share-btn {
    padding: 10px 20px;
    border-radius: 25px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.share-facebook {
    background: #3b5998;
    color: white;
}

.share-twitter {
    background: #1da1f2;
    color: white;
}

.share-whatsapp {
    background: #25d366;
    color: white;
}

.share-copy {
    background: #6c757d;
    color: white;
}

.detail-item {
    margin-bottom: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.detail-icon {
    color: #2563eb;
    margin-right: 20px;
    width: 20px;
}

.rating-container {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
}

.star-rating {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.rating-summary .stars {
    font-size: 1.2rem;
}

.rating-summary .stars .star {
    color: #cbd5e1;
}

.rating-summary .stars .star.filled {
    color: #f59e0b;
}

.rating-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.rating-count {
    color: #64748b;
    font-size: 0.9rem;
}

.rating-form {
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
    margin-top: 20px;
}

.submit-rating-btn {
    background: linear-gradient(135deg, #2563eb, #10b981);
    border: none;
    border-radius: 20px;
    padding: 10px 25px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.submit-rating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.submit-rating-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.cancel-registration-btn {
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cancel-registration-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.comment-item {
    background: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #2563eb;
}

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

.comment-rating {
    font-size: 0.9rem;
    color: #f59e0b;
}

.comment-date {
    font-size: 0.8rem;
    color: #64748b;
    margin-left: auto;
}

.comment-text {
    color: #475569;
    line-height: 1.5;
    margin: 0;
}

#commentsContainer {
    max-height: 400px;
    overflow-y: auto;
}
