@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,600;0,900;1,300;1,400;1,700&display=swap');
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body {
    background-color: #fff;
    margin: 0 0 100px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f6f8fc;
}
.details {
    position: relative;
    width: 100%;
    padding: 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 30px;
    margin-top: 10px;
}
.details .recentUploads {
    position: relative;
    display: grid;
    height: 100%;
    background: #fff;
    padding: 20px;
    box-shadow: 0px 7px 25px rgba(0,0,0,0.6);
    border-radius: 20px;
}
@media (max-width: 840px) {
        .details .recentUploads {
           width:330px;
        }
}
.cardHeader {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.cardHeader h2 {
    font-weight: 600;
    color: #3586ff;
}
.error-message h4 {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 5px;
    background-color: lightgreen;
}
.error-message a {
    text-decoration: none;
}
.details table {
    width: 100%;
    /* border-collapse: collapse; */
    margin-top: 10px;
}
.titleButton {
    text-decoration: none;
    position: relative;
    background-color: #fff;
    border: none;
    color: #3586ff;
    font-size: 15px;
    letter-spacing: 0.5px;
    font-weight: 550;
    cursor: pointer;
    float: left;
}
.details .fa, button {
    color: red;
    float: right;
    cursor: pointer;
    background-color: #fff;
    border: none;
    margin-top: 5px;
    font-size: 15px;
}
.details .fa:hover {
    transform: scale(1.2);
    transition: 0.7s;
}
.titleButton:hover {
    background-color: #deebfd;
    color: #00265f;
}
.details table thead td {
    font-weight: 600;
}
.details .closeSave {
    visibility: hidden;
}
.details .recentUploads table tr td {
    color: #000;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
/* .details .recentUploads table tr:last-child {
    border: none;
} */
.details .recentUploads table tr:hover {
    background-color: #deebfd;
    color: #fff;
}
.details .recentUploads table span {
    color: gray;
    font-size: 10px;
}
.details .recentUploads table tr td {
    padding: 10px;
}
.details .recentUploads table tr td:last-child {
    text-align: end;
}
.details .recentUploads table tr td:nth-child(2) {
    width: 100px;
}
