.company_dash{
    position: relative;
    height: 40vh; /* 25% of the viewport height */
    /* background-image: url("{{ asset('images/lipapay.png') }}"); Path to your background image */
    background-size: cover; /* Cover the entire div */
    background-position: center; /* Center the image */
    display: flex; /* Use flexbox for centering */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    text-align: center; /* Center text */
    color: #0ba360; /* Text color (optional) */
    font-size: 24px; /* Text size (optional) */
    overflow: hidden; /* Hide overflow */
}


.company_dash::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #099e5d38; /* Red tint with 50% opacity */
    z-index: 1; /* Ensure it is on top of the background image but below the text */
}


.company_dash > * {
    position: relative;
    z-index: 2; /* Ensure text is on top of the tint overlay */
}

.company_dash h3{
    color: #0ba360;
}

.pending-photo{
    width: 200px;
}