/* Custom Prompt Details CSS */

.prompts-details-container {
    max-width: 1140px;
    margin: 0 auto;
}

.back-to-feed-link {
    color: #7d859c;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s ease;
    text-decoration: none;
}

.back-to-feed-link:hover {
    color: #C253F9;
}

.prompt-image-card {
    border-radius: 16px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
    margin-bottom: 24px !important;
}

.prompt-image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.prompt-info-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
}

.prompt-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    color: #1e293b;
}

.prompt-description {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
}

.prompt-tag-badge {
    background-color: rgba(194, 83, 249, 0.06);
    color: #C253F9;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(194, 83, 249, 0.1);
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.prompt-tag-badge:hover {
    background-color: rgba(194, 83, 249, 0.12);
    color: #C253F9;
}

/* Creator Profile Card */
.creator-profile-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
    margin-bottom: 14px !important;
}

.creator-avatar-container {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.creator-avatar-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.creator-initials-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #C253F9;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.creator-name {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
}

.creator-name:hover {
    color: #C253F9;
}

.creator-role {
    font-size: 13px;
    color: #64748b;
    font-weight: 400;
}

.btn-follow-outline {
    border: 1.5px solid #C253F9 !important;
    color: #C253F9 !important;
    background-color: transparent !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    transition: all 0.2s ease !important;
}

.btn-follow-outline:hover {
    background-color: rgba(194, 83, 249, 0.05) !important;
}

/* Stats Block */
.stats-box {
    background-color: rgba(194, 83, 249, 0.04);
    border-radius: 12px;
    padding: 16px 8px;
    transition: transform 0.2s ease, background-color 0.2s ease;
    border: 1px solid transparent;
}

.stats-box:hover {
    transform: translateY(-2px);
    background-color: rgba(194, 83, 249, 0.08);
    border-color: rgba(194, 83, 249, 0.1);
}

.stats-icon {
    font-size: 22px;
    color: #C253F9;
}

.stats-count {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}

.stats-label {
    font-size: 10px;
    font-weight: 600;
    color: #334155;
    letter-spacing: 0.5px;
}

/* Action Buttons */
.btn-action-primary {
    background-color: #C253F9 !important;
    color: #ffffff !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    padding: 12px 24px !important;
    border-radius: 12px !important;
    border: none !important;
    transition: all 0.2s ease !important;
}

.btn-action-primary:hover {
    background-color: #a83ddb !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(194, 83, 249, 0.2) !important;
}

.btn-action-secondary {
    background-color: rgba(194, 83, 249, 0.05) !important;
    color: #1e293b !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    padding: 12px 24px !important;
    border-radius: 12px !important;
    border: none !important;
    transition: all 0.2s ease !important;
}

.btn-action-secondary:hover {
    background-color: rgba(194, 83, 249, 0.1) !important;
    color: #1e293b !important;
}

/* More from User Thumbnail */
.user-thumbnail-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background-color: #f1f5f9;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.user-thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.user-thumbnail-item:hover img {
    transform: scale(1.05);
}
