﻿.thread-container {
    width: 100%;
    height: 100%;
    padding: 10px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.thread-content {
    width: 100%;
    display: grid;
    grid-template-columns: 300px 1fr;
    grid-gap: 20px;
}

.thread-details {
    width: 100%;
}

.thread-details-group {
    margin-top: 10px;
    width: 100%;
    border-bottom: 1px solid #e7e7e7;
    padding: 10px 0;
}

    .thread-details-group label {
        font-size: 12px;
        color: #999;
        padding-bottom: 10px;
    }

.thread-list {
    /*overflow-y: scroll;*/
    height: fit-content;
    /*padding: 15px 0;*/
}

.thread-list-group {
    width: 100%;
    margin-bottom: 30px;
}

.thread-list-data {
    border: 1px solid #d5d5d5;
    position: relative;
    border-radius: 10px;
}

.thread-list-icon {
    display: flex;
    justify-content: center;
    align-items: end;
}

    .thread-list-icon svg {
        width: 30px;
    }

.thread-list-data-header {
    background: #777;
    margin: 0;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

    .thread-list-data-header small {
        color: #555;
        font-size: smaller;
        font-weight: normal;
        color: #fff;
    }

.thread-list-data-body {
    padding: 10px;
    width: 100%;
}

    .thread-list-data-body img {
        width: 100%;
        height: 350px;
        object-fit: contain;
    }

.thread-details-badge {
    font-size: 11px;
    padding: 5px;
    border-radius: 5px;
    background: #FFB606;
    font-weight: 600;
}

.thread-button-container {
    display: flex;
    gap: 15px;
    padding: 15px;
    padding-top: 0;
    margin-left: 300px;
}

    .thread-button-container button {
        padding: 5px;
        font-size: 15px;
        cursor: pointer;
        font-weight: 600;
        width: 150px;
        border-radius: 5px;
    }

.thread-list-data-header small svg {
    width: 25px;
    fill: #fff;
}


.decline-form-group {
    margin-bottom: 10px;
}

    .decline-form-group label {
        font-size: 14px;
        margin-bottom: 5px;
        display: block;
    }


    .decline-form-group input,
    .decline-form-group textarea {
        background-color: #fff;
        border: 1px solid #d5d5d5;
        width: 100%;
        padding: 10px;
        outline: none;
        border-radius: 10px;
    }

.modal-saveBtn {
    width: 90px;
    border: none;
    height: 35px;
    background-color: #777;
    color: #FFF;
    font-weight: 600;
    position: relative;
    cursor: pointer;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-self: end;
    justify-content: center;
}

.crs-verify-btn {
    background-color: #fff;
    border: 2px solid #777;
}

.crs-decline-btn {
    background-color: #777;
    color: #fff;
    border: 2px solid #777;
}

.thread-list-data-header * {
    color: #fff;
}

.crs-project-name {
    font-size: 1.4em;
    font-weight: 600;
}
.crs-user-actions {
    padding-bottom: 15px;
}

.project-form-group {
    margin-bottom: 10px;
}

.project-form-group input {
    background-color: #fff;
    border: 1px solid #d5d5d5;
    width: 100%;
    padding: 10px;
    outline: none;
    font-size: .9em;
    border-radius: 10px;
}
.projectlogo-file-upload-wrapper {
    height: 150px;
    border: 1px solid #d5d5d5;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.projectlogo-file-upload-wrapper img[src=""] {
    display: none;
}

.projectlogo-file-upload-wrapper img {
    height: 100%;
}
.dropdown-container-new-icon {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease-out;
}
.dropdown-container-new-icon svg {
    height: 15px;
    fill: #222;
}
.dropdown-project-container {
    display: grid;
    grid-template-columns: 1fr 40px;
    position: relative;
    border: 1px solid #d5d5d5;
    background: #FFF;
    border-radius: 10px;
    width: 100%;
}
    .dropdown-project-container input {
        border: none !important;
    }

.entry-remove-reason {
    padding-top: 10px;
    border-top: 1px solid #d5d5d5;
}

.entry-remove-reason label {
    font-size: 13px;
    font-weight: 600;
}

.entry-remove-reason p {
    font-size: 14px;
}

.gdrive-link-a {
    font-size: 14px;
    color: #FFB606;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    word-break: break-word;
}


/**media queries**/
@media screen and (max-width: 767px) {
    .thread-content {
        /*grid-template-columns: 1fr;*/
        display: flex;
        flex-direction: column-reverse;
        gap: 0;
    }

    .thread-list {
        overflow: unset;
        height: auto;
    }

    .thread-button-container {
        flex-direction: column;
        margin-left: 0;
        padding: 0;
        margin-top: 20px;
    }

        .thread-button-container button {
            width: 100%;
            margin-bottom: 10px;
        }

    .thread-container {
        overflow-y: scroll;
    }

    .crs-user-actions {
        /*display: none;*/
        margin-top: 20px;
    }
    .thread-details-group {
        padding-top: 0;
    }

    .crs-side-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .crs-side-info .jsProjectName {
        grid-area: 1 / 1 / span 2 / 1
    }

    .crs-side-info .jsStatus {
        grid-area: 4 / 1 / 4 / span 2;
        /*text-align: right;*/
    }
    /*.crs-side-info .jsStatus p {
        display: inline;
    }*/

    .modal-saveBtn {
        width: 100%;
    }
    .thread-list-group {
        margin-bottom: 20px;
    }
    .thread-list-group:last-child {
        margin-bottom: 0;
    }
}
