/* Login Page */
.height-width-100 {
    height: 100vh;
    width: 100vw;
}

.login-page-left {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: #214B4C;
    height: auto !important;
    min-height: 100%;
}

.login-page-right {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: #FFFBF5;
    height: auto !important;
    min-height: 100%;
}

.plagcheck-login-logo {
    font-family: "Montserrat";
    font-size: 70px;
    font-weight: 700;
    line-height: 60.95px;
    letter-spacing: -1px;
    color: #FFFBF5;
}

.plagcheck-subtitle {
    font-family: "Montserrat";
    font-size: 15px;
    font-weight: 300;
    line-height: 12.19px;
    color: #FFFBF5;
}

.hello-again-text {
    font-family: "Montserrat";
    font-size: 40px;
    font-weight: 700;
    line-height: 36.57px;
}

.hello-again-subtitle {
    font-family: "Montserrat";
    font-size: 15px;
    font-weight: 400;
    line-height: 14.63px;
    color: #757678;
}

.login-input {
    text-indent: 20px;
    border: 0.5px solid #7B7F8C;
    border-radius: 5px;
    width: 40vw;
    height: 9vh;
    margin-bottom: 10px;
    margin-top: 10px;
    padding-right: 40px; /* Space for the eye icon */
}
.input-container {
    position: relative;
    display: inline-block;
}
.eye-icon {

    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1rem;
    color: #7B7F8C;
}

.forgot-password-link {
    font-family: "Montserrat";
    font-size: 15px;
    font-weight: 400;
    line-height: 14.63px;
    width: 40vw;
    text-align: right;
    text-decoration: none;
    color: #214B4C;
}

.login-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #214B4C;
    color: white;
    border-radius: 5px;
    border: none;
    font-family: "Montserrat";
    font-weight: 500;
    font-size: 22px;
    line-height: 14.63px;
    margin-top: 30px;
    width: 40vw;
    height: 8vh;
    text-decoration: none;
}

.login-error-msg {
    padding-top: 10px;
    color: red;
}

.google-facebook-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40vw;
    height: 9vh;
    gap: 30px;
}

.google-facebook-button {
    width: 30%;
    height: 60px;
    border-radius: 5px;
    border: 0.5px solid #7B7F8C;
    background-color: white;
    font-family: "Poppins";
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
}

.footer-login-text {
    font-family: "Montserrat";
    font-size: 13px;
    font-weight: 400;
    line-height: 14.63px;
    width: 40vw;
    color: #757678;
    margin-top: 30px;
    text-align: center;
}

.footer-login-link {
    color: #214B4C;
    text-decoration: none;
    font-weight: 500;
}

/* Dashboard Page */
.dashboard-header {
    height: 10vh;
    width: 100vw;
    background-color: #214B4C;
}

.plagcheck-header {
    position: absolute;
    top: 1rem;
    left: 3rem;
    font-family: "Montserrat";
    font-size: 45px;
    font-weight: 700;
    line-height: 60.95px;
    letter-spacing: -1px;
    color: #FFFBF5;
}

.profile-name {
    position: absolute;
    top: 2.5vh;
    left: 80vw;
    font-family: "Montserrat";
    font-size: 15px;
    font-weight: 500;
    line-height: 14.63px;
    color: white;
}

.profile-pic {
    width: 40px;
    height: 40px;
    margin-right: 0.5rem;
    border-radius: 50%;
}

.dropdown-button {
    padding: 0;
    background: none;
    border: none;
}

.dropdown-profile {
    position: absolute;
    top: 6vh;
    left: 89vw;
}

.dashboard-row {
    height: 90vh;
    width: 90vw;
    margin: auto;
    margin-top: 1.5rem;
    justify-content: space-between; /* Membuat konten terpisah kiri-kanan */
}

.new-submission-button-col {
    display: flex;
    justify-content: flex-end; /* Paksa konten ke kanan */
    padding-right: 15px; /* Optional: memberi jarak dari tepi */
  }

.dashboard-content {
    height: auto !important;
    border: 0.5px solid #E1E2E5;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    min-height: fit-content;
    overflow: visible;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    flex-grow: 0;
    div:empty {
        display: none;
    }
}

.dashboard-title {
    position: relative;
    top: 2rem;
    left: 2rem;
    font-family: "Montserrat";
    font-size: 25px;
    font-weight: 600;
    line-height: 24.38px;
}

.dashboard-subtitle {
    position: relative;
    top: 1.5rem;
    left: 2rem;
    font-family: "Montserrat";
    font-size: 15px;
    font-weight: 450;
    line-height: 14.63px;
}

.new-submission-button{
    position: relative;
    top: 2rem;
    right: 2rem;
    background-color: #2B656A;
    color: white;
    border: none;
    width: 200px;
    height: 50px;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 400;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hr{
    border-top: 1px solid rgb(67, 67, 67);
    margin-top: 30px;
    right: 2rem;
}
.hr-bottom{
    border-top: 1px solid rgb(67, 67, 67);
    right: 2rem;
}

.submission-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
.submission-table th, .submission-table td {
    padding: 12px;
    padding-bottom: 30px;
    border-bottom: 1px solid #dddddd00;
}
.submission-table th {
    background-color: #f2f2f200;
    text-align: center;
}
.submission-table td {
    text-align: center;
}
.success {
    color: #2da79c;
}
.error, .unsupported, .status-failed {
    color: rgb(190, 6, 6);
}
.status-success {
    color: #2da79c;
    font-weight: 450;
}
.detail-btn, .delete-btn {
    padding: 5px 10px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}
.detail-btn {
    border-radius: 5px;
    color: #2B656A;
    border: 2px solid #2B656A;
    background-color: transparent;
}
.delete-btn {
    border-radius: 5px;
    margin-left: 5px;
    color: #D9534F;
    border: 2px solid #D9534F;
    background-color: transparent;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    padding-top: 10px;
}

.pagination button {

    border: 1px solid #2b656a00;
    background-color: white;
    cursor: pointer;
    border-radius: 5px;
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.footer{
    padding-top: 10px;
}
