/*
# ============================ #
#                              #
#   SSSSSSSS      K       K    #
#  S              K      K     #
#  S              K     K      #
#   SSSSSSSS      KKKKKK       #
#           S     K     K      #
#           S     K      K     #
#  SSSSSSSS       K       K    #
#                              #
# ============================ #
*/


/* ================================
   Styles related to all html-pages
================================ */


/* -----------------
   General Structure
----------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}


body {
    background: #ffffff;
}


.container {
    display: flex;
    height: 100vh;
}



/* -------
   Sidebar
------- */

.sidebar {
    width: 220px;
    background: #ffffff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
}


.sidebar::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 0;
    width: 2px;
    height: calc(100% - 135px);
    background: #000;
}


.menu-box {
    border: 2px solid #000;
    padding: 15px;
    height: calc(100% - 96px);
    display: flex;
    flex-direction: column;
}


.menu-box li {
    padding: 10px 5px;
    cursor: pointer;
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
}


/* Add lines BETWEEN items */
.menu-box li:not(:last-child) {
    border-bottom: 2px solid #000;
}


/* Keep "Support" and "Logout" at the bottom of the left menu */
.menu-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: 1;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
}


.support-row {
    margin-top: auto;
    border-top: 2px solid #000;
}


.support-row:hover {
    background: #efefef;
}


.logout-row {
    cursor: pointer;
}


/* Placeholder for the logout row, in case that one is not logged in. */
.logout-placeholder {
    margin-top: auto;
    border-top: 2px solid #000;
    cursor: default;
}


.sidebar-placeholder {
    cursor: default;
}


.menu-box li.sidebar-placeholder-final {
    border-bottom: 0;
}


.bottom-placeholder {
    cursor: default;
}


.logout-row:hover {
    background: #efefef;
}



/* --------
   Headline
-------- */

.main {
    flex: 1;
    display: flex;
    flex-direction: column;
}


.header-img {
    position: absolute;
    top: 10px;
    left: 20px;
    height: 80px;
    max-height: 12vh;
}


.top-title-box {
    width: 100%;
    margin: 0;
    padding: 24px 20px;
    border: 2px solid #000;
    background: #fff;
    text-align: center;
}


.top-title-link {
    display: block;
    color: inherit;
    text-decoration: none;
}


.top-title-link:hover {
    text-decoration: none;
}


.top-title-box h2 {
    font-size: 38px;
    letter-spacing: 1px;
    line-height: 1.2;
}


/* In order to keep the layout with three columns ...
(removing this makes the third column go into the second */
.content {
    display: flex;
    flex: 1;
}


.entry-column {
    flex: 2;
    padding: 30px 24px;
    border-right: 2px solid #000;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 24px;
}


.entry-column p {
    font-size: 28px;
    line-height: 1.25;
}



/* ================================
   Styles related to the Login-page
================================ */

.entry-options,
.login-panel,
.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}



/* =======================================
   Styles related to the Registration-page
======================================= */

.registration-panel {
    display: flex;
    flex-direction: column;
    gap: 18px;
}


.registration-panel h2 {
    font-size: 36px;
}


.registration-panel p {
    font-size: 20px;
    line-height: 1.4;
}


.registration-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 20px;
    width: 100%;
}


.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.phone-number-row {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 10px;
}


.full-width {
    grid-column: 1 / -1;
}


.registration-form label,
.checkbox-label {
    font-size: 18px;
}


.registration-form input,
.registration-form select,
.registration-form textarea {
    width: 100%;
    font-size: 18px;
    padding: 10px 12px;
    border: 2px solid #000;
    background: #fff;
}


.registration-form textarea {
    resize: vertical;
    min-height: 110px;
}


.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
}


.radio-group label,
.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}



/* =======================================
   Styles related to the Registration-page
======================================= */

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


.review-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
}


.review-actions .approve-all-metadata-button {
    justify-self: end;
    margin-left: 0;
}


.review-actions .main-action {
    justify-self: start;
    max-width: 100%;
    min-width: 0;
    white-space: normal;
    text-align: center;
}


.form-actions input,
.form-actions button {
    font-size: 18px;
    padding: 10px 14px;
    border: 2px solid #000;
    background: #fff;
    cursor: pointer;
}


.form-actions input:hover,
.form-actions button:hover {
    background: #efefef;
}



/* ==========================================
   Styles related to the AI_KaSa_Video_Preview page
========================================== */

.entry-option {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: fit-content;
    max-width: 100%;
    font-size: 22px;
    line-height: 1.2;
    text-align: left;
    background: #fff;
    border: 2px solid #000;
    padding: 14px 18px;
    cursor: pointer;
    appearance: none;
}


.entry-option:hover {
    background: #efefef;
}


/* ================================
   Styles related to the Login-page
================================ */

.login-panel h2 {
    font-size: 36px;
}


.login-panel label {
    font-size: 22px;
}


.login-panel input {
    width: 100%;
    font-size: 20px;
    padding: 10px 12px;
    border: 2px solid #000;
    background: #fff;
}


.login-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


.form-error {
    width: 100%;
    font-size: 18px;
    color: #9d0000;
}


/* ===================================
   Styles related to My_Profile-page
=================================== */

.profile-panel {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
}


.profile-panel h2 {
    font-size: 36px;
}


.profile-value {
    width: 100%;
    min-height: 44px;
    font-size: 18px;
    padding: 10px 12px;
    border: 2px solid #000;
    background: #fff;
    line-height: 1.2;
}


.profile-details input:disabled {
    background: #e6e6e6;
    color: #777;
    border-color: #999;
    opacity: 1;
    cursor: not-allowed;
}


/* =========================================
   Styles related to My_CV_Information-page
========================================= */

.cv-information-panel {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
}


.cv-information-panel h2 {
    font-size: 36px;
}


.cv-template-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}


.cv-template-card {
    border: 2px solid #000;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    background: #fff;
}


.cv-template-card h3,
.cv-placeholder-panel h3 {
    font-size: 24px;
}


.cv-template-card p,
.cv-placeholder-panel p {
    font-size: 18px;
    line-height: 1.35;
}


.cv-information-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}


.clear-cv-form {
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}


.clear-cv-button {
    align-self: flex-start;
    font-size: 15px;
    padding: 6px 10px;
}


.clear-cv-confirmation {
    border: 2px solid #000;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fff;
}


.clear-cv-confirmation p {
    font-size: 18px;
    line-height: 1.35;
}


.clear-cv-confirmation-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


.cv-information-form label {
    font-size: 18px;
}


.cv-information-form textarea {
    width: 100%;
    min-height: 120px;
    font-size: 18px;
    padding: 10px 12px;
    border: 2px solid #000;
    background: #fff;
    resize: vertical;
}


.cv-progress {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 8px;
}


.cv-progress-track {
    width: 100%;
    height: 14px;
    border: 2px solid #000;
    background: #fff;
}


.cv-progress-fill {
    width: 0;
    height: 100%;
    background: #000;
    transition: width 0.2s ease;
}


.cv-progress-steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px;
}


.cv-progress-step {
    width: 100%;
    border: 2px solid #000;
    padding: 8px;
    font-size: 14px;
    line-height: 1.2;
    min-height: 54px;
    display: flex;
    align-items: center;
    text-align: left;
    background: #fff;
    cursor: pointer;
}


.cv-progress-step:hover {
    background: #efefef;
}


.cv-progress-step.active {
    background: #efefef;
    font-weight: bold;
}


.cv-progress-step.completed {
    background: #dcdcdc;
}


.cv-stage {
    display: none;
    flex-direction: column;
    gap: 16px;
}


.cv-stage.active {
    display: flex;
}


.cv-stage h3 {
    font-size: 26px;
}


.cv-constant-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    cursor: pointer;
    min-height: 44px;
    padding: 8px 12px;
    border: 2px solid #000;
    background: #fff;
}


.cv-constant-checkbox input {
    width: 20px;
    height: 20px;
    margin: 0;
}


.cv-constant-checkbox:has(input:disabled) {
    border-color: #999;
    background: #e6e6e6;
    color: #777;
    cursor: not-allowed;
}


.cv-constant-checkbox input:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}


.cv-entry-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}


.cv-entry {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.cv-entry h4 {
    font-size: 20px;
}


.education-entry-fields {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}


.education-entry-fields label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}


.education-entry-fields input {
    width: 100%;
    font-size: 18px;
    padding: 10px 12px;
    border: 2px solid #000;
    background: #fff;
}


.education-entry-fields input:disabled {
    background: #e6e6e6;
    color: #777;
    border-color: #999;
    opacity: 1;
}


.cv-link-fields {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}


.cv-link-fields label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}


.cv-information-form input[type="url"] {
    width: 100%;
    font-size: 18px;
    padding: 10px 12px;
    border: 2px solid #000;
    background: #fff;
}


.cv-information-form input[type="url"]:disabled {
    background: #e6e6e6;
    color: #777;
    border-color: #999;
    opacity: 1;
    cursor: not-allowed;
}


.cv-entry label {
    font-size: 18px;
}


.cv-entry-controls {
    display: flex;
    gap: 10px;
}


.cv-entry-control {
    width: 44px;
    height: 44px;
    border: 2px solid #000;
    background: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}


.cv-entry-control:hover {
    background: #efefef;
}


.cv-information-form textarea:disabled {
    background: #e6e6e6;
    color: #777;
    border-color: #999;
    opacity: 1;
    cursor: not-allowed;
}


.cv-entry-control:disabled {
    cursor: default;
    opacity: 0.5;
}


.cv-entry-control:disabled:hover {
    background: #fff;
}


.cv-entry-message {
    min-height: 22px;
    font-size: 16px;
    line-height: 1.35;
    color: #9d0000;
}


.cv-stage-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


.cv-stage-actions button:disabled {
    cursor: default;
    opacity: 0.5;
}


.cv-placeholder-panel {
    border: 2px solid #000;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}


/* =================================
   Styles related to Applications-page
================================= */

.applications-panel {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
}


.applications-panel h2 {
    font-size: 44px;
}


.applications-empty-state,
.application-template-options {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}


.applications-list {
    --application-card-padding: 18px;
    --application-rating-column-width: 148px;
    --application-rating-visible-width: calc(var(--application-rating-column-width) + var(--application-card-padding));
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.applications-list-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--application-rating-visible-width);
    gap: 18px;
    align-items: end;
}


.applications-list-rating-heading {
    grid-column: 2;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}


.application-card {
    border: 2px solid #000;
    padding: var(--application-card-padding);
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fff;
}


.application-card-button {
    width: 100%;
    color: inherit;
    text-align: left;
    cursor: pointer;
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--application-rating-column-width);
    align-items: stretch;
    gap: 18px;
}


.application-card-button:hover,
.application-card-button.is-selected {
    background: #efefef;
}


.application-card-button.is-selected {
    box-shadow: inset 6px 0 0 #000;
}


.applications-selection-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 96px;
}


.application-selection-actions {
    justify-content: flex-start;
}


.application-card-link {
    color: inherit;
    text-decoration: none;
}


.application-card-link:hover {
    background: #efefef;
}


.application-card h3 {
    font-size: 24px;
}

.application-card-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}


.application-card-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 72px;
    margin: calc(var(--application-card-padding) * -1) calc(var(--application-card-padding) * -1) calc(var(--application-card-padding) * -1) 0;
    padding: var(--application-card-padding);
    border-left: 2px solid #000;
    text-align: center;
}


.application-card-rating-value {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}


.application-card-rating-empty {
    color: #777;
}


.application-card-rating-empty .application-card-rating-value {
    font-weight: 400;
}


.application-card a,
.application-card p {
    font-size: 18px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}


.application-template-form,
.application-template-batch-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
}


.application-template-form label,
.application-template-batch-form label {
    font-size: 18px;
}


.application-template-form input,
.application-template-form textarea,
.application-template-form select,
.application-template-batch-form input,
.application-template-batch-form textarea,
.application-template-batch-form select {
    width: 100%;
    font-size: 18px;
    padding: 10px 12px;
    border: 2px solid #000;
    background: #fff;
}


.application-template-form textarea,
.application-template-batch-form textarea {
    min-height: 180px;
    resize: vertical;
}


#job-advertisement-text,
.application-template-batch-form textarea[name="batch_job_advertisement_text"] {
    min-height: 360px;
}


.batch-url-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}


.batch-url-row {
    display: block;
}


.batch-url-actions {
    display: flex;
    gap: 8px;
    align-self: flex-start;
}


.batch-url-actions button {
    min-width: 44px;
}


.url-input-row {
    display: flex;
    align-items: stretch;
    gap: 10px;
}


.url-input-row input {
    flex: 1;
    min-width: 0;
}


.url-input-row.is-disabled input,
.url-input-row.is-disabled button {
    background: #e6e6e6;
    color: #777;
    border-color: #999;
    cursor: not-allowed;
}


.url-input-row.is-disabled input::placeholder {
    color: #8a8a8a;
}


.job-advertisement-url-input::placeholder {
    font-size: 15px;
}


.manual-metadata-button {
    align-self: flex-start;
}


.manual-metadata-fields {
    display: flex;
    flex-direction: column;
    gap: 18px;
}


.metadata-age-controls {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 160px;
    gap: 10px;
    width: min(100%, 620px);
}


.application-metadata-field {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 14px;
}


.metadata-age-field {
    grid-template-columns: minmax(0, 1fr);
}


.application-metadata-field .metadata-age-controls {
    max-width: 100%;
}


.metadata-confirm-button.is-confirmed,
.batch-metadata-confirm-button.is-confirmed {
    background: #e6e6e6;
    color: #555;
    border-color: #777;
}


.batch-metadata-review-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}


.batch-metadata-review-item {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: 20px;
    border-top: 2px solid #000;
}


.batch-metadata-review-item:first-child {
    padding-top: 0;
    border-top: 0;
}


.batch-metadata-review-item h3 {
    font-size: 26px;
}


.scrape-loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.86);
}


.scrape-loading-box {
    display: flex;
    align-items: center;
    gap: 14px;
    width: min(100%, 520px);
    padding: 18px 20px;
    border: 2px solid #000;
    background: #fff;
    box-shadow: 6px 6px 0 #000;
}


.scrape-loading-copy {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
    gap: 12px;
}


.scrape-loading-box p {
    font-size: 20px;
    line-height: 1.25;
}


.scrape-loading-progress {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.scrape-loading-progress-track {
    width: 100%;
    height: 18px;
    border: 2px solid #000;
    background: #fff;
}


.scrape-loading-progress-fill {
    width: 0;
    height: 100%;
    background: #000;
    transition: width 0.2s ease;
}


.scrape-loading-progress p {
    font-size: 16px;
}


.scrape-loading-spinner {
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    border: 4px solid #d8d8d8;
    border-top-color: #000;
    border-radius: 50%;
    animation: scrape-loading-spin 0.8s linear infinite;
}


@keyframes scrape-loading-spin {
    to {
        transform: rotate(360deg);
    }
}


.main-action:disabled,
.secondary-action:disabled {
    background: #e6e6e6;
    color: #777;
    border-color: #999;
    cursor: not-allowed;
}


.application-detail-panel {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    padding-bottom: 128px;
}


.application-detail-url {
    font-size: 18px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}


.application-detail-field,
.application-detail-description {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.application-detail-heading {
    font-size: 26px;
}


.application-detail-box {
    border: 2px solid #000;
    padding: 16px;
    background: #fff;
    font-size: 18px;
    line-height: 1.45;
    overflow-wrap: anywhere;
}


.application-tailored-section {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 24px;
}


.application-tailored-dashboard {
    display: grid;
    grid-template-columns: 652px minmax(320px, 1fr);
    align-items: start;
    gap: 12px;
    width: 100%;
}


.application-detail-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 652px;
    max-width: 100%;
}


.tailored-action-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 12px;
}


.tailored-action-row form {
    width: 320px;
    max-width: 100%;
}


.tailored-action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    max-width: 100%;
    height: 56px;
    box-sizing: border-box;
    text-align: center;
}


.tailored-action-row form .tailored-action-button {
    width: 100%;
}


.main-action.role-fit-action-button {
    background: #dff3e4;
}


.main-action.role-fit-action-button:hover {
    background: #cce9d3;
}


.main-action.role-fit-action-button:disabled,
.main-action.role-fit-action-button:disabled:hover {
    background: #d8d8d8;
    color: #777;
    border-color: #999;
    cursor: not-allowed;
}


.role-fit-availability {
    margin: 0;
    color: #666;
    font-size: 16px;
}


.role-fit-column {
    min-width: 0;
}


.application-tailored-section .role-fit-placeholder {
    padding: 24px;
    border: 2px dashed #999;
    background: #fafafa;
    font-size: 18px;
    line-height: 1.5;
}


.role-fit-result {
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 20px;
    padding: 22px;
    border: 2px solid #000;
    background: #f3fbf5;
    box-sizing: border-box;
}


.role-fit-score {
    display: flex;
    align-items: baseline;
    justify-content: center;
    min-width: 104px;
    padding: 14px;
    border: 2px solid #000;
    background: #dff3e4;
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    box-sizing: border-box;
}


.role-fit-score span {
    font-size: 20px;
}


.role-fit-copy h3 {
    margin: 0 0 8px;
    font-size: 22px;
}


.role-fit-copy {
    min-width: 0;
}


.role-fit-lists {
    display: flex;
    flex-direction: column;
    gap: 18px;
}


.role-fit-list h4 {
    margin-bottom: 6px;
    font-size: 19px;
}


.role-fit-list ul {
    margin: 0;
    padding-left: 22px;
}


.role-fit-list li {
    margin-bottom: 6px;
    font-size: 18px;
    line-height: 1.5;
}


.role-fit-list li:last-child {
    margin-bottom: 0;
}


.role-fit-strengths h4 {
    color: #176b2c;
}


.role-fit-concerns h4 {
    color: #8a2525;
}


.tailored-document-toggle {
    align-self: flex-start;
}


.tailored-cv-panel {
    margin-top: 4px;
}


.tailored-cover-letter-panel {
    margin-top: 4px;
}


.cover-letter-preview {
    width: min(100%, 780px);
    margin: 0 auto;
    padding: 42px 48px;
    border: 2px solid #000;
    background: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    line-height: 1.65;
}


.cover-letter-preview p {
    margin: 0 0 1.15em;
}


.cover-letter-header {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 34px;
}


.cover-letter-sender {
    align-self: flex-end;
    font-style: normal;
    text-align: right;
}


.cover-letter-recipient {
    min-height: 2.5em;
}


.cover-letter-body p:last-child {
    margin-bottom: 0;
}


.cover-letter-signoff {
    margin-top: 2.5em !important;
    margin-bottom: 0 !important;
}


.cover-letter-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


.cover-letter-edit-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}


.cover-letter-edit-form label,
.cover-letter-empty-state {
    font-size: 18px;
    line-height: 1.4;
}


.cover-letter-edit-form textarea {
    width: 100%;
    min-height: 520px;
    padding: 16px;
    border: 2px solid #000;
    background: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    line-height: 1.55;
    resize: vertical;
}


.tailored-cv-panel .cv-progress-steps {
    grid-template-columns: repeat(7, minmax(0, 1fr));
}


.application-tailored-fields {
    display: flex;
    flex-direction: column;
    gap: 18px;
}


.application-description-text {
    white-space: normal;
}


/* ==============================
   Styles related to Support-page
============================== */

.support-image {
    display: block;
    width: 100%;
    max-width: 760px;
    height: auto;
}



/* ============================
   Styles related to Mixed-page
============================ */

.main-action,
.secondary-action {
    font-size: 18px;
    padding: 10px 14px;
    border: 2px solid #000;
    background: #fff;
    cursor: pointer;
}


.main-action:hover,
.secondary-action:hover {
    background: #efefef;
}


.hidden {
    display: none;
}

.registration-page .entry-column {
    justify-content: flex-start;
}



/* =======================================
   Styles related to Home_After_Login-page
======================================= */

/* Daily Goal */
.daily {
    flex: 2;
    padding: 20px;
    border-right: 2px solid #000;
}


.daily textarea {
    width: 100%;
    height: 200px;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #000;
}


.home-status-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}


.home-status-panel h2 {
    font-size: 36px;
    line-height: 1.2;
}


/* Tracking Section */
.tracking {
    flex: 1;
    padding: 20px;
}


.tracking h3 {
    margin-bottom: 10px;
}


/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(5, 30px);
    gap: 10px;
    margin-bottom: 20px;
}


/* Boxes */
.box {
    width: 25px;
    height: 25px;
    border: 2px solid #000;
    cursor: pointer;
}


.box:hover {
    background: #ddd;
}

/* Responsive */
@media (max-width: 1250px) {
    .application-tailored-dashboard {
        grid-template-columns: 1fr;
    }

    .application-detail-actions {
        width: 652px;
    }
}


@media (max-width: 800px) {
    .role-fit-result {
        flex-direction: column;
    }

    .top-title-box h2 {
        font-size: 28px;
    }

    .entry-column p {
        font-size: 24px;
    }

    .entry-option {
        font-size: 20px;
    }

    .login-panel h2 {
        font-size: 30px;
    }

    .login-panel label {
        font-size: 20px;
    }

    .content {
        flex-direction: column;
    }

    .daily {
        border-right: none;
        border-bottom: 2px solid #000;
    }

    .registration-form {
        grid-template-columns: 1fr;
    }

    .cv-template-grid {
        grid-template-columns: 1fr;
    }

    .cv-progress-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tailored-cv-panel .cv-progress-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

/* ============================== */
