
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');

/* Century Gothic Font Face */
@font-face {
    font-family: 'Century Gothic';
    src: local('Century Gothic'), local('CenturyGothic'), local('AppleGothic');
}

/* CSS Custom Properties for Cornerstone Brand Colors */
:root {
  /* Primary Colors */
  --cornerstone-primary: #003252;      /* Pantone 3035 - Primary Blue */
  --cornerstone-secondary: #00b289;    /* Pantone 339 - Teal Green */
  --cornerstone-text: #54565b;         /* Pantone Cool Gray 11 - Body Text */
  --cornerstone-light: #e2e2e6;        /* Light Gray Background */
  
  /* Secondary Colors */
  --cornerstone-blue-1: #00567c;       /* Pantone 2153 */
  --cornerstone-blue-2: #006a8e;       /* Pantone 7706 */
  --cornerstone-blue-3: #1d8296;       /* Pantone 2222 */
  --cornerstone-blue-4: #0099b2;       /* Pantone 2396 */
  --cornerstone-blue-5: #00a7b5;       /* Pantone 7710 */
  --cornerstone-blue-6: #00b7bd;       /* Pantone 2397 */
  --cornerstone-blue-7: #00bab3;       /* Pantone 2398 */
  --cornerstone-blue-8: #00b2a2;       /* Pantone 3534 */
  
  /* Functional Grey Tones */
  --cornerstone-grey-1: #64696b;       /* Dark Grey */
  --cornerstone-grey-2: #75797b;       /* Medium Dark Grey */
  --cornerstone-grey-3: #979a9c;       /* Medium Grey */
  --cornerstone-grey-4: #a8abac;       /* Light Grey */
  --cornerstone-grey-5: #babcb;        /* Very Light Grey */
  --cornerstone-grey-6: #dcddde;       /* Lightest Grey */
  
  /* Button Colors */
  --btn-danger: #c23b3b;              /* Danger Red */
  --btn-hover: #babcbd;               /* Hover State */
  --btn-disabled: #54565b;            /* Disabled State */
  --btn-secondary-bg: #e2e2e6;        /* Secondary Background */
  
  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Century Gothic', 'CenturyGothic', 'AppleGothic', sans-serif;
  
  /* Font Sizes */
  --font-size-main-heading: 28px;
  --font-size-secondary-heading: 14px;
  --font-size-body: 14px;
  --line-height-main: 40.2px;
  --line-height-secondary: 23.2px;
}

/* Global Typography */
html {
  font-size: 16px;
  height: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  line-height: var(--line-height-secondary);
  color: var(--cornerstone-text);
  background-color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

/* Main Content Wrapper */
.main-content {
  flex: 1;
  padding-bottom: 2rem;
}

/* Main element styling */
main {
  flex: 1 0 auto;
  padding: 0;
  width: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

/* Heading Styles */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--cornerstone-primary);
  margin-bottom: 1rem;
}

h1 {
  font-size: var(--font-size-main-heading);
  line-height: var(--line-height-main);
}

h2, h3, h4 {
  font-size: var(--font-size-secondary-heading);
  line-height: var(--line-height-secondary);
}

/* Title Bar */
.title-bar {
  background-color: #003e52;
  color: #FFFFFF;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 50, 82, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-radius: 0;
}

.app-icon {
  width: 3.45rem;
  height: 3.45rem;
  margin-right: 0.75rem;
  filter: brightness(0) invert(1); /* Makes the SVG white */
}

.app-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: #FFFFFF;
}

.header-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #FFFFFF;
  transition: opacity 0.2s ease;
}

.header-link:hover {
  color: #FFFFFF;
  text-decoration: none;
  opacity: 0.8;
}

/* Header Logo - 80% of current size */
.header-logo {
  width: 80%;
  height: auto;
  max-width: 100%;
}

.user-profile {
  display: flex;
  align-items: center;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.user-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-photo i {
  font-size: 1.5rem;
  color: #FFFFFF;
}

.user-details {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #FFFFFF;
  font-weight: 600;
}

.user-role {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.user-profile .dropdown-toggle {
  background: none;
  border: none;
  color: #FFFFFF;
  padding: 0.25rem;
}

.user-profile .dropdown-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.user-profile .dropdown-menu {
  background-color: #FFFFFF;
  border: 1px solid #e2e2e6;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.user-profile .dropdown-item {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #54565B;
  padding: 0.5rem 1rem;
}

.user-profile .dropdown-item:hover {
  background-color: #f8f9fa;
}

.login-link {
  color: #FFFFFF;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.login-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

/* ================================
   STANDARDIZED BUTTON SYSTEM
   ================================ */

/* Base Button Styles */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  line-height: 1.2;
}

/* PRIMARY BUTTON - Main Actions */
.btn-primary {
  background-color: var(--cornerstone-primary); /* #003252 - Pantone 3035 */
  border-color: var(--cornerstone-primary);
  color: #ffffff;
}

.btn-primary:hover:not(:disabled) {
  background-color: var(--cornerstone-blue-1); /* Darker shade for hover */
  border-color: var(--cornerstone-blue-1);
  color: #ffffff;
  text-decoration: none;
}

.btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 50, 82, 0.25);
}

/* SECONDARY BUTTON - Alternative Actions */
.btn-secondary {
  background-color: var(--btn-secondary-bg); /* #e2e2e6 - Light Gray */
  border-color: var(--btn-secondary-bg);
  color: var(--cornerstone-text);
}

.btn-secondary:hover:not(:disabled) {
  background-color: var(--btn-hover); /* #babcbd - Hover color */
  border-color: var(--btn-hover);
  color: var(--cornerstone-text);
  text-decoration: none;
}

.btn-secondary:focus {
  box-shadow: 0 0 0 0.2rem rgba(226, 226, 230, 0.5);
}

/* SUCCESS BUTTON - Positive Actions */
.btn-success {
  background-color: var(--cornerstone-secondary); /* #00b289 - Pantone 339 */
  border-color: var(--cornerstone-secondary);
  color: #ffffff;
}

.btn-success:hover:not(:disabled) {
  background-color: var(--cornerstone-blue-8); /* Darker teal for hover */
  border-color: var(--cornerstone-blue-8);
  color: #ffffff;
  text-decoration: none;
}

.btn-success:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 178, 137, 0.25);
}

/* DANGER BUTTON - Destructive Actions */
.btn-danger {
  background-color: var(--btn-danger); /* #c23b3b - Danger Red */
  border-color: var(--btn-danger);
  color: #ffffff;
}

.btn-danger:hover:not(:disabled) {
  background-color: #a02e2e; /* Darker red for hover */
  border-color: #a02e2e;
  color: #ffffff;
  text-decoration: none;
}

.btn-danger:focus {
  box-shadow: 0 0 0 0.2rem rgba(194, 59, 59, 0.25);
}

/* DISABLED STATE - All Button Types */
.btn:disabled,
.btn.disabled {
  background-color: var(--btn-disabled) !important; /* #54565b - Pantone Cool Gray 11 */
  border-color: var(--btn-disabled) !important;
  color: #ffffff !important;
  cursor: not-allowed;
  opacity: 0.6;
}

.btn:disabled:hover,
.btn.disabled:hover {
  background-color: var(--btn-disabled) !important;
  border-color: var(--btn-disabled) !important;
  transform: none;
}

/* BUTTON SIZES */
.btn-sm {
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
}

.btn-lg {
  font-size: 1rem;
  padding: 1rem 2rem;
}

/* OUTLINE VARIANTS */
.btn-outline-primary {
  background-color: transparent;
  border-color: var(--cornerstone-primary);
  color: var(--cornerstone-primary);
}

.btn-outline-primary:hover:not(:disabled) {
  background-color: var(--cornerstone-primary);
  border-color: var(--cornerstone-primary);
  color: #ffffff;
}

.btn-outline-secondary {
  background-color: transparent;
  border-color: var(--btn-secondary-bg);
  color: var(--cornerstone-text);
}

.btn-outline-secondary:hover:not(:disabled) {
  background-color: var(--btn-secondary-bg);
  border-color: var(--btn-secondary-bg);
  color: var(--cornerstone-text);
}

.btn-outline-success {
  background-color: transparent;
  border-color: var(--cornerstone-secondary);
  color: var(--cornerstone-secondary);
}

.btn-outline-success:hover:not(:disabled) {
  background-color: var(--cornerstone-secondary);
  border-color: var(--cornerstone-secondary);
  color: #ffffff;
}

.btn-outline-danger {
  background-color: transparent;
  border-color: var(--btn-danger);
  color: var(--btn-danger);
}

.btn-outline-danger:hover:not(:disabled) {
  background-color: var(--btn-danger);
  border-color: var(--btn-danger);
  color: #ffffff;
}

/* BUTTON GROUPS */
.btn-group {
  display: inline-flex;
  vertical-align: middle;
}

.btn-group .btn {
  margin-right: -2px;
}

.btn-group .btn:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group .btn:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}

/* RESPONSIVE BUTTON BEHAVIOR */
@media (max-width: 768px) {
  .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.8125rem;
  }
  
  .btn-sm {
    padding: 0.4375rem 0.875rem;
    font-size: 0.6875rem;
  }
  
  .btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
  }
}

/* Cards and Containers */
.card {
  border: 1px solid var(--cornerstone-grey-6);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 50, 82, 0.1);
}

.card-header {
  background-color: var(--cornerstone-primary);
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  border-bottom: 1px solid var(--cornerstone-primary);
}

/* Tables */
.table {
  font-family: var(--font-body);
}

.table thead th {
  background-color: var(--cornerstone-primary);
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  border-color: var(--cornerstone-primary);
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(226, 226, 230, 0.3);
}

/* Forms */
.form-control {
  border: 1px solid var(--cornerstone-grey-4);
  border-radius: 4px;
  font-family: var(--font-body);
}

.form-control:focus {
  border-color: var(--cornerstone-secondary);
  box-shadow: 0 0 0 0.2rem rgba(0, 178, 137, 0.25);
}

.form-label {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--cornerstone-primary);
}


/* Main Page Styles */
.page-title-section {
  padding: 2rem 0 1rem 0;
}

.page-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: #003e52;
  margin: 0;
}

.search-filters-section {
  padding: 1rem 0 2rem 0;
}

.search-filters-form {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #e2e2e6;
}

.search-group {
  position: relative;
}

.search-input {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #000000;
  border: 1px solid #e2e2e6;
  border-radius: 20px;
  padding: 0.5rem 1rem;
  padding-right: 3rem;
}

.search-input::placeholder {
  color: #54565B;
}

.search-btn {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #54565B;
  padding: 0.25rem;
}

.filter-select {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #000000;
  border: 1px solid #e2e2e6;
  border-radius: 20px;
  padding: 0.5rem 1rem;
}

.table-section {
  padding: 0 0 2rem 0;
}

.table-container {
  background-color: #FFFFFF;
  border: 1px solid #54565B;
  border-radius: 8px;
  overflow: hidden;
}

.activity-table {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
}

.activity-table thead th {
  background-color: #003e52;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  padding: 1rem 0.75rem;
}

.activity-table tbody tr {
  background-color: #e2e2e6;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.activity-table tbody tr:hover {
  background-color: #d1d3d4;
}

.activity-table tbody td {
  padding: 1rem 0.75rem;
  color: #54565B;
  border: none;
  vertical-align: middle;
}

.activity-item {
  border-left: 4px solid var(--cornerstone-secondary);
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: white;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 4px rgba(0, 50, 82, 0.1);
}

.activity-item:hover {
  box-shadow: 0 4px 8px rgba(0, 50, 82, 0.15);
  transform: translateY(-1px);
  transition: all 0.3s ease;
}

.activity-item .activity-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--cornerstone-primary);
  margin-bottom: 0.5rem;
}

.activity-item .activity-meta {
  color: var(--cornerstone-grey-2);
  font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: #003e52; /* Same as header */
    color: white;
    padding: 1rem 0;
    margin-top: auto;
    flex-shrink: 0;
    width: 100%;
    height: 60px; /* Same height as header */
    display: flex;
    align-items: center;
    border-radius: 0;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-icon {
  height: 40px;
  width: auto;
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: white;
  text-align: center;
}

.footer-version {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: white;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .activity-hub-header h1 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  
  .search-filter-section {
    padding: 1rem;
  }
  
  .footer {
    height: auto;
    padding: 0.75rem 0;
  }
  
  .footer .d-flex {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .footer-copyright {
    order: 2;
  }
  
  .footer-version {
    order: 3;
  }
}

/* Loading States */
.loading {
  color: var(--cornerstone-secondary);
  font-family: var(--font-body);
}

/* Success/Error Messages */
.alert-success {
  background-color: rgba(0, 178, 137, 0.1);
  border-color: var(--cornerstone-secondary);
  color: var(--cornerstone-primary);
}

.alert-danger {
  background-color: rgba(100, 105, 107, 0.1);
  border-color: var(--cornerstone-grey-1);
  color: var(--cornerstone-primary);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cornerstone-grey-6);
}

::-webkit-scrollbar-thumb {
  background: var(--cornerstone-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--cornerstone-blue-1);
}

/* Activity Details Overview Section - Column Format */
.overview-section.activity-details-panel .overview-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.overview-section.activity-details-panel .overview-field {
  display: flex !important;
  flex-direction: column;
  margin-bottom: 0;
}

.overview-section.activity-details-panel .status-field {
   align-items: end;
}

.overview-section.activity-details-panel .overview-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--cornerstone-primary);
  margin-bottom: 0.5rem;
  line-height: 1.2;
  width:auto;
}

.overview-section.activity-details-panel .overview-value {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--cornerstone-text);
  line-height: 1.4;
  word-wrap: break-word;
}

/* Section Header Styles - Global */
.section-header {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: #003e52;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #00b7bd;
}

.subsection-header {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  color: #003e52;
  background-color: #f8f9fa;
  padding: 1rem 1.5rem;
  margin: 0;
  border-bottom: 1px solid #e2e2e6;
}

/* Homepage Styles - Moved from Index.cshtml */
/* Page Title */
.page-title-section {
  padding: 1rem 0 1rem 0;
}

.page-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: #003e52;
  margin: 0;
}

/* Search and Filters */
.search-filters-section {
  padding: 1rem 0 2rem 0;
}

.search-filters-form {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #e2e2e6;
}

.search-group {
  position: relative;
}

.search-input {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #000000;
  border: 1px solid #e2e2e6;
  border-radius: 20px;
  padding: 0.5rem 1rem;
  padding-right: 3rem;
}

.search-input::placeholder {
  color: #54565B;
}

.search-btn {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #54565B;
  padding: 0.25rem;
}

.filter-select {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #000000;
  border: 1px solid #e2e2e6;
  border-radius: 20px;
  padding: 0.5rem 1rem;
}

/* Table */
.table-section {
  padding: 0 0 2rem 0;
}

.table-container {
  background-color: #FFFFFF;
  border: 1px solid #54565B;
  border-radius: 8px;
  overflow: hidden;
}

.application-table {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
}

.application-table thead th {
  background-color: #003e52;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  padding: 1rem 0.75rem;
  vertical-align: top;
}

.application-table tbody tr {
  background-color: #f8f9fa;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.application-table tbody tr:hover {
  background-color: #e9ecef;
}

.application-table tbody td {
  padding: 1rem 0.75rem;
  color: #54565B;
  border: none;
  vertical-align: middle;
}

/* Status Badges */
.status-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-new {
  background-color: #00b7bd;
  color: #FFFFFF;
}

.status-review {
  background-color: #00567c;
  color: #FFFFFF;
}

.status-progress {
  background-color: #a8abac;
  color: #FFFFFF;
}

.status-completed {
  background-color: #00b289;
  color: #FFFFFF;
}

.status-hold {
  background-color: #003252;
  color: #FFFFFF;
}

.status-waiting {
  background-color: #ffc107;
  color: #000000;
}

.status-rejected {
  background-color: #dc3545;
  color: #FFFFFF;
}

.status-default {
  background-color: #e2e2e6;
  color: #54565B;
}

/* Records Count */
.records-count {
  padding: 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #54565B;
  border-top: 1px solid #e2e2e6;
}

/* Pagination */
.pagination-section {
  padding: 1rem 0 2rem 0;
}

.pagination {
  justify-content: flex-end;
  margin: 0;
}

.pagination .page-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #54565B;
  background-color: #FFFFFF;
  border: 1px solid #e2e2e6;
  padding: 0.5rem 0.75rem;
  margin: 0 0.125rem;
  border-radius: 4px;
  min-width: 40px;
  text-align: center;
}

.pagination .page-link:hover {
  background-color: #f8f9fa;
  border-color: #003252;
  color: #003252;
}

.pagination .page-item.active .page-link {
  background-color: #003252;
  border-color: #003252;
  color: #FFFFFF;
}

.pagination-nav {
  background-color: #E2E2E6 !important;
  color: #54565B !important;
}

.pagination-nav:hover {
  background-color: #d1d3d4 !important;
  color: #54565B !important;
}

.pagination-nav i {
  font-size: 0.75rem;
}

/* Recent Application Section */
.recent-application-section {
  padding: 2rem 0;
  border-top: 1px solid #e2e2e6;
}

.recent-application-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: #003e52;
  margin-bottom: 1.5rem;
}

.recent-application-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.recent-application-tile {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  padding: 0;
}

.application-avatar {
  flex-shrink: 0;
  font-size: 1.5rem; /* Adjusted for icon size */
  color: #003252; /* Icon color */
}

.application-content {
  flex: 1;
  min-width: 0;
}

.application-header {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: #003e52;
  margin-bottom: 0.25rem;
  line-height: 1.4;
}

.application-link {
  color: #003252;
  text-decoration: none;
  font-weight: 600;
}

.application-link:hover {
  color: #001a2c;
  text-decoration: underline;
}

.application-timestamp {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #6c757d;
  font-style: italic;
}

.timestamp-text {
  font-size: 0.875rem;
  color: #6c757d;
  font-style: italic;
}

/* Access Details Update Styles */
.access-details-instruction {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 1rem;
  font-style: italic;
}

.overview-field-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.overview-field-content .overview-value {
  flex: 1;
  margin-bottom: 0;
}

.update-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.access-details-actions {
  padding-top: 1rem;
}