body{
    margin: 0px;
    padding: 0px;
    background-color: #ffffff;
}

.navbar {
    background-color: #ffffff;
    width: 100%;
    padding: 16px 40px;
}

.navbar-content {
    max-width: none;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    position: relative;
    height: 45.341px;
    width: 172.032px;
    overflow: clip;
}

.navbar-links {
    display: flex;
    gap: 64px;
    align-items: center;
}

.logout-btn {
    background-color: transparent;
    border: 1.5px solid #5e8081;
    border-radius: 2px;
    color: #5e8081;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.logout-btn:hover {
    background-color: #f0f0f0;
}

.navbar-divider {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    margin: 0;
    border: none;
}

.nav-link.active {
    font-weight: 500;
}


.login-button {
    display: inline-block;
    background-color: #5E8081;
    color: #FDFCF6  ;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    font-family: sans-serif;
    text-decoration: none;
    border-radius: 2px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: fit-content;
}

/* Create Project Overlay */
.create-project-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(60, 60, 60, 0.8);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.create-project-container {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    width: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.create-project-title {
    color: #333333;
    font-size: 18px;
    font-weight: 700;
    font-family: sans-serif;
    margin: 0 0 20px 0;
}

.create-project-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    font-family: sans-serif;
    color: #333333;
    margin-bottom: 25px;
    box-sizing: border-box;
}

.create-project-input::placeholder {
    color: #b0b0b0;
}

.create-project-input:focus {
    outline: none;
    border-color: #999999;
}

.create-project-buttons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.create-project-btn.cancel-btn {
    background-color: transparent;
    color: #333333;
    border: none;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 14px;
    font-family: sans-serif;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.create-project-btn.cancel-btn:hover {
    opacity: 0.7;
}

.create-project-btn.submit-btn {
    background-color: #d4a5f0;
    color: #333333;
    font-weight: 500;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-family: sans-serif;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.2s ease;
    margin-left: auto;
}

.create-project-btn.submit-btn:hover {
    opacity: 0.9;
}

/* Landing Page */
.landing-page {
    margin: 0;
    padding: 0;
    background-color: #2c3e50;
    background-image: 
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.05) 0%, transparent 50%);
    background-size: 50px 50px, 50px 50px, 300px 300px, 300px 300px;
    min-height: 100vh;
    font-family: sans-serif;
}

.landing-container {
    padding: 60px 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.landing-header {
    margin-bottom: 80px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.compass-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compass-icon svg {
    width: 100%;
    height: 100%;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.brand-tagline {
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.9;
}

.landing-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.landing-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 400;
    font-family: serif;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.landing-subtitle {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    font-family: sans-serif;
    margin: 0 0 40px 0;
    opacity: 0.9;
}

.auth-button {
    display: inline-block;
    background-color: #20b2aa;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    font-family: sans-serif;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: fit-content;
}

.auth-button:hover {
    background-color: #1a9a94;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-card-content {
        flex-direction: column;
    }
    
    .project-actions {
        width: 100%;
        justify-content: flex-end;
    }
    
    .projects-header {
        flex-direction: column;
        gap: 15px;
    }
}

/* Top Banner */
.top-banner {
    background: linear-gradient(175deg, #222d3c 3.39%, #2c3b4e 82.92%);
    display: flex;
    gap: 12px;
    align-items: center;
    position: relative;
    min-height: 257px;
}

.top-banner-pattern {
    position: absolute;
    left: 0px;
    top: 0;
    width: 1055px;
    height: 100%;
}

.top-banner-pattern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.title-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: center;
}

.title-container-banner{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: center;
    margin-left: 100px;
}

.banner-title {
    font-family: 'Besley', serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 49px;
    letter-spacing: -1.2px;
    color: #fdfcf7;
    margin: 0;
}

.buttons-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.create-btn {
    background-color: #5e8081;
    border: none;
    border-radius: 2px;
    padding: 12px 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fdfcf6;
    cursor: pointer;
}

.plus-icon {
    width: 24px;
    height: 24px;
}

/* Main Content */
.main-content {
    padding: 32px 128px;
}

.header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.subheading {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 31px;
    color: #000000;
    margin: 0;
}

.tabs {
    display: flex;
    gap: 10px;
}

.tab {
    background-color: #ffffff;
    border: 1px solid #c0bca3;
    border-radius: 2px;
    padding: 13px 21px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #2c3b4e;
    cursor: pointer;
}

.tab.active {
    background-color: #2c3b4e;
    color: #fdfcf7;
    font-weight: 700;
}

.cards-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Card */
.payroll-card {
    background-color: #f3f2eb;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-radius: 8px;
}
.card-left-wrapper {
    display: flex;
    gap: 16px;
    align-items: center;
}

.card-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.chevron-icon-right{
    width: 8px;
    height: 14px;
}

.title-container {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    position: relative;
    right: 55px;
}

.icon-container {
    border-radius: 0 16px 16px 16px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-button-inner{
    display: flex;
    align-items: center;
    gap: 10px;
    width: 82px;
}

.icon-finished {
    background-color: #D3E2D7;
}

.icon-pending {
    background-color: #ADC0D9;
}

.icon-container img {
    width: 24px;
    height: 24px;
}

.card-title-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.status-badge {
    background-color: #adc0d9;
    backdrop-filter: blur(2px);
    padding: 6px 8px;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1c2632;
    width: fit-content;
}

.card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #2c3b4e;
    margin: 0;
}

.info-container {
    padding-left: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.info-icon {
    width: 10.667px;
    height: 10.667px;
}

.info-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: #2c3b4e;
}

.info-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    color: #2c3b4e;
}

.card-right {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    align-items: flex-end;
}

.last-update {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: auto;
}

.update-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: #2c3b4e;
}

.update-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    color: #2c3b4e;
}

.card-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.archive-btn-card {
    background-color: transparent;
    border: none;
    padding: 12px 20px;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #2c3b4e;
    cursor: pointer;
}

.view-btn {
    background-color: #2c3b4e;
    border: none;
    padding: 12px 20px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.view-icon {
    width: 24px;
    height: 24px;
}
/* New Project Page */
.new-project-page {
    background-color: #ffffff;
    min-height: 100vh;
}

/* Top Banner for New Project */
.top-banner .title-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: center;
}

.back-button-container {
    display: flex;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #5e8081;
    border: none;
    border-radius: 2px;
    padding: 10px;
    cursor: pointer;
    text-decoration: none;
}

.back-icon {
    width: 24px;
    height: 24px;
    transform: rotate(180deg);
    position: relative;
    z-index: 10;
}

.back-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #ffffff;
}

.title-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.banner-title {
    font-family: 'Besley', serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 49px;
    letter-spacing: -1.2px;
    color: #fdfcf7;
    margin: 0;
}

/* Main Content for New Project */
.main-content {
    padding: 32px 64px;
}

.header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.download-all-btn {
    background-color: #cfd9d9;
    padding: 12px 20px;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fdfcf6;
    cursor: pointer;
}

.content-layout {
    display: flex;
    gap: 16px;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 350px;
}

.sidebar-card {
    background-color: #f3f2eb;
    padding: 16px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.card-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.header-line {
    width: 16.642px;
    height: 2px;
    background-color: #8a4828;
}

.card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #2c3b4e;
    margin: 0;
}

.upload-btn {
    background-color: #2c3b4e;
    border: none;
    padding: 12px 20px;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fdfcf6;
    cursor: pointer;
    width: 100%;
}

.empty-state {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
}

.empty-icon {
    background-color: #f3f2eb;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-img{
    width: 13.3px;
    height: 13.3px;
}

.empty-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2c3b4e;
    margin: 0;
}

.main-area {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.expandable-card {
    background-color: #f3f2eb;
    padding: 16px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.card-left {
    display: flex;
    gap: 16px;
    align-items: center;
}

.chevron-icon {
    width: 8px;
    height: 14px;
    transform: rotate(90deg);
}

.chevron-icon-container {
    display: flex;
    gap: 16px;
    align-items: center;
}

.card-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #2c3b4e;
    margin: 0;
}

.component-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #2c3b4e;
}

.table-container {
    background-color: #ffffff;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th {
    background-color: #fdfcf7;
    border: 1px solid #f3f2eb;
    padding: 8px 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #1c2632;
    text-align: left;
}

.data-table td {
    border: 1px solid #f3f2eb;
    padding: 8px 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #1c2632;
}

.name-cell {
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-icon {
    background-color: #f3f2eb;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon-img {
    width: 8px;
    height: 8px;
}

.upload-cell-btn {
    border: 1.5px solid #2c3b4e;
    background: none;
    padding: 12px 20px;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #2c3b4e;
    cursor: pointer;
}

.upload-form{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.output-log-section {
    display: flex;
    gap: 12px;
    height: 230px;
}

.output-file-card, .log-card {
    background-color: #ffffff;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
}

.output-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.generate-btn {
    background-color: #bbbec1;
    border: none;
    padding: 12px 20px;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fdfcf6;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.file-icon {
    width: 24px;
    height: 24px;
}

.download-btn {
    background-color: #cfd9d9;
    border: none;
    padding: 12px 20px;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fdfcf6;
    cursor: pointer;
}

@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Besley:500|Montserrat:500,var(--p16-semibold-font-weight)");
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html,
body {
  margin: 0px;
  height: 100%;
}
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}

/* Main Page */
.main-page {
    background-color: #fdfcf7;
    min-height: 100vh;
    position: relative;
}

/* Overlay BG */
.overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1c2632;
    opacity: 0.7;
    z-index: 1000;
}

/* Modal Template */
.modal-template {
    position: absolute;
    top: 350px;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fdfcf7;
    border: 2px solid #f3f2eb;
    width: 540px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 1001;
    border-radius: 8px;
    overflow: hidden;
}

.modal-header {
    display: flex;
    justify-content: flex-end;
    padding: 12px;
}

.close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.cross-icon {
    width: 24px;
    height: 24px;
}

.modal-content {
    display: flex;
    flex-direction: column;
    
    gap: 48px;
    padding: 0 32px 32px;
    align-items: center;

}

.modal-icon {
    background-color: #2c3b4e;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-icon img {
    width: 42.667px;
    height: 42.667px;
}

.modal-title {
    font-family: 'Besley', serif;
    font-size: 23px;
    font-weight: 500;
    line-height: 30px;
    color: #1c2632;
    margin: 0;
    text-align: center;
}

.input-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-input {
    background-color: #ffffff;
    border: 1px solid #c0bca3;
    padding: 16px 21px;
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    font-size: 14px;
    color: #1c2632;
    opacity: 0.5;
    border-radius: 2px;
    width: 100%;
    box-sizing: border-box;
}

.modal-input::placeholder {
    color: #1c2632;
    opacity: 0.5;
}

.modal-create-btn {
    background-color: #5e8081;
    border: none;
    padding: 12px 20px;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fdfcf6;
    cursor: pointer;
    width: 100%;
}


.top-banner-pattern {
    position: relative;
    inset: 0;
    z-index: 1;
}

.buttons-container {
    position: relative;
    z-index: 10;
}


  .notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 320px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    padding: 16px 20px 16px 20px;
    font-family: Arial, sans-serif;
    color: #1f2937; /* dark gray */
  }

  .notification h4 {
    margin: 0 30px 6px 0;
    font-size: 16px;
    font-weight: 600;
  }

  .notification p {
    margin: 0;
    font-size: 14px;
    color: #6b7280; /* medium gray */
  }

  .close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    color: #6b7280; /* medium gray */
    transition: color 0.2s ease;
  }

  .close-btn:hover {
    color: #000; /* black on hover */
  }


.log-content{
    background-color: white;
    padding: 12px;
}

.project-meta {
  margin-top: 8px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1f2937; /* dark gray */
  max-width: 500px;
}

.meta-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
}

.status-dot {
  width: 6px;
  height: 6px;
  background-color: #6b8f8e; /* muted green/teal */
  border-radius: 50%;
  flex-shrink: 0;
}

.meta-description {
  margin-top: 4px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e7eb; /* light divider */
  font-size: 10px;
  font-weight: 500;
}

.status-green{
    background-color: #D3E2D7;
}


.file-link {
    display: flex;
    align-items: center;
    background-color: #d7e1f1;
    padding: 10px 14px;
    width: fit-content;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
  }

.file-info {
display: flex;
flex-direction: column;
}
.file-name {
font-size: 15px;
color: #2f3b5e;
font-weight: 500;
margin: 0;
}
.file-date {
font-size: 12px;
color: #5b6b91;
margin: 2px 0 0 0;
}

.file-icon{
    margin-right: 8px;
    width: 32px;
    height: 32px;
}

.log-entries{
    height: 230px;
    overflow-y: auto;
}

.output-file-card{
    height: 225px;
    overflow-y: auto;

}