/*!
 * -------------------------------------------------------
 * Project Name : Prop Funding
 * Author       : SoftwareZon
 * Author URL   : https://softwarezon.com
 * Version      : 1.0.0
 * Created      : 2025
 * Description  : Contains global CSS used by invest overview  components.
 * File         : invest-overview.css
 * -------------------------------------------------------
 * ©2025 SoftwareZon. All Rights Reserved.
 * -------------------------------------------------------
 */
/*----------------------------------------------------
  01. Invest Overview Section Styles
----------------------------------------------------*/

/* Investment Overview Section Styles */
.profit-overview-section {
    position: relative;
    z-index: 1;
}

.return-view-area {
    background: var(--brand-5);
    border-radius: 12px;
    padding: 1rem;
    height: 100%;
    overflow-y: auto;
    max-height: 300px;
}

/* Custom Scrollbar for return view area */
.return-view-area::-webkit-scrollbar {
    width: 6px;
}
.return-view-area::-webkit-scrollbar-track {
    background: var(--brand-5);
}
.return-view-area::-webkit-scrollbar-thumb {
    background: var(--brand-20);
    border-radius: 10px;
}

.return-overview tr th {
    font-size: 14px;
    font-weight: 500;
    padding: 10px 5px;
    color: var(--white);
    border-bottom: 1px solid var(--brand-20);
}

.return-overview tr td {
    padding: 12px 5px;
    border-bottom: 1px solid var(--brand-10);
}

.return-overview tr:last-child td {
    border-bottom: none;
}

.investor-profile img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

/* Glass/Filter Effects */
.bg-filter-20 {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.bg-white-4 {
    background: rgba(255, 255, 255, 0.04);
}

.bg-brand-5 {
    background: rgba(var(--brand), 0.05);
}

/* Input Styles */
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-control:focus {
    background-color: var(--brand-10);
    border-color: var(--brand);
    color: var(--white);
    box-shadow: none;
}

/* Result Cards Animation */
.investor-card {
    transition: all 0.3s ease;
}

/* Utility classes not always in global */
.cursor-pointer {
    cursor: pointer;
}
