﻿
:root {
    --Blue: #53D5FF;
    --DarkBlue: #2E404F;
    --Green: #7ED321; 
    --Orange: #F5A623;
    --Background: #F6F7FB;
    --Border: 1px solid #E9ECF2;
}
body {
    background-color: var(--Background);
}

.absolute-container {
    width: 70%;
    margin: auto;
   overflow: hidden;
}


.assigned-charities .content-row{
    display: flex;
    flex-direction: row;
    width: 100%;
}


.assigned-charities .row-item {
    flex-grow: 1;
    flex: 1;
}

.assigned-charities table {
    margin: auto;
    border: var(--Border);
    border-collapse: unset;
    border-radius: 20px;
    -webkit-box-shadow: 0px 0px 17px 4px rgba(83,213,255,0.82);
    box-shadow: 0px 0px 17px 4px rgba(83,213,255,0.82);
    width: 95%;
}

.assigned-charities table tr th {
    border:none;
}

.badges{
    margin-top: 2vw;
}

.custom-badge {
    background-color: #4a4a54;
    border-radius: 10px;
    padding: 0.5vw 0vw 0.5vw 1vw;
    max-width: 80%;
    width: 20vw;
}


.charities-count{
    color: var(--Blue);
    font-weight: bold;
}
.green-number{
    color: var(--Green);
    font-weight: bold;
}
.user-assigned-info {
    border-radius: 10px;
    border: var(--Border)
}
.total-cases {
    border-radius: 10px;
    border: var(--Border);
    background-color: white;
    padding: 10px;
}

.back-button {
    margin: auto;
    min-width: 150px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    padding: 10px 20px 10px 20px;
    background-color: var(--Blue);
    border-radius: 10px;
}

.td-border-right{
    border-right: 1px solid black !important;
}
/*Dashboard Mobile*/
@media only screen and (max-width: 768px) {
    .absolute-container{
        position: relative;
        width: 90%;
        left: 50%;
        right: 0;
    }

    .assigned-charities {
        position: relative;
        width: 400%;
        margin-left: -20%;
        margin-right: 10%;
        padding: 10px;
    }

    .assigned-charities .row-item {
        flex-grow: 1;
        flex: 1;
    }

   
    .back-button {
        width: 150px;

    }
}
/*END Dashboard mobile*/

/*Agent activities*/
.table-container {
    margin: auto;
    overflow-x: scroll;
}
.activities-table {
    padding: 0;
    margin: 0;
    border-spacing: 0;
    border-collapse: unset !important;
    border: 5px solid #53D5FF;
    border-radius: 20px;
    overflow: scroll;
}
.activity-td {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: center;
    vertical-align: central;
    border: none;
}

.activity-name-th {
    padding: 0;
    margin: 0;
    border: none;
    background-color: var(--Blue);
    text-align: center;
    vertical-align: central;
    min-width: 200px;
}

.activities-table thead th {
    padding: 0;
    margin: 0;
    min-width: 200px;
}


.activity-border-td {
    margin: 0;
    padding: 0;
    text-align: center;
    border: none;
}

.activities-table tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}
.activities-table tr td {
    border-right: 1px solid black;
}
.activities-table tr th {
    border-right: 1px solid black;
}
.activities-table tr td:last-of-type {
        border: none;
}

.activities-table tr th:last-of-type {
    border: none;
}
.left {
    text-align: left;
}
.right {
    text-align: right;
}

.center {
    text-align: center;
}
/*End agent activities*/
