﻿.view-influencer-container {
    padding: 2rem;
    color: #fff;
    position: relative; /* MODIFIED: This is now an anchor for the button */
}

.influencer-details-title {
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: bold;
}

.influencer-section {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #fff;
    padding-bottom: 0.5rem;
}

.personal-info p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.personal-info strong {
    color: #fff;
}

.table-wrapper {
    border: 1px solid #fff;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background-color: #000;
    color: #fff;
    margin:0px;
}

    .table th, .table td {
        border: 1px solid #444;
        padding: 0.75rem;
        text-align: left;
    }

    .table th {
        background-color: #000;
        font-weight: bold;
    }

.performance-table td:first-child {
    font-weight: bold;
}

/* --- MODIFIED BUTTON POSITIONING START --- */

.back-button-container {
    position: absolute;
    top: 2rem;
    right: 2rem;
}

/* --- MODIFIED BUTTON POSITIONING END --- */

.btn-back {
    background-color: #000;
    color: #fff;
    border: 1px solid #555;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .btn-back:hover {
        background-color: #fff;
        color: #000;
    }
