@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;
    height: 100;
    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;
}
.cardHeader {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.cardHeader h2 {
    font-weight: 600;
    color: #3586ff;
}
.succes {
    margin-top: 10px;
    background-color: rgb(148, 245, 148);
    color: black;
}
.btn {
    position: relative;
    padding: 5px 10px;
    background-color: #3586ff;
    color: #fff;
    border-radius: 5px;
}
.docChange {
    color: #00265f;
    float: left;
    margin-left: 25px;
}
.details .fa {
    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 {
    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;
}
.titleButton:hover {
    background-color: #deebfd;
    color: #00265f;
}
.details table {
    width: 100%;
    /* border-collapse: collapse; */
    margin-top: 10px;
}
.details table thead td {
    font-weight: 600;
}
.details .recentUploads table tr td {
    color: #000;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: 1.5s;
}
/* .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;
}
.details .recentUploads table tr td:nth-child(3) {
    text-align: center;
}

.popup {
    width: 400px;
    background: rgb(250, 229, 229);
    border-radius: 6px;
    position: absolute;
    top: 25%;
    left: 58%;
    transform: translate(-50%, -50%) scale(0.1); 
    text-align: center;
    padding: 0 30px 30px;
    color: #333;
    visibility: hidden; 
    transition: transform 0.4s, top 0.4s;
    z-index: 100;
}
.popup p {
    font-weight: 600;
    border: none;
    margin-top: 10px;
    margin-left: 35px;
}
.nee {
    background-color: rgb(255, 108, 108);
    border: none;
    color: #fff;
    padding: 7px 15px;
    box-shadow: 0px 2px 4px 0px rgba(0,0,0,.2);
    cursor: pointer;
    margin-top: 15px;
    font-family: "roboto", sans-serif;
}
.nee:hover {
    background-color: lightcoral;
}
.ja {
    background-color: lightcoral;
    border: none;
    color: #fff;
    padding: 7px 15px;
    box-shadow: 0px 2px 4px 0px rgba(0,0,0,.2);
    cursor: pointer;
    margin-top: 15px;
    float: left;
    font-family: "roboto", sans-serif;
}
.ja a {
    font-family: "roboto", sans-serif;
    color: #fff;
    text-decoration: none;
}
.ja:hover {
    background-color: rgb(255, 108, 108);
}
.open-popup{
    visibility: visible;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
}
.error-message h4 {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 5px;
    background-color: lightgreen;
}
.error-message a {
    text-decoration: none;
}
