.page-container {
	padding: 25px;
	background-color: #f4f7fa;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	overflow-x: hidden;
	/* Prevent horizontal scroll on the page container */
}
.page-title {
	color: #2b3e50;
	font-size: 32px;
	font-weight: 600;
	margin: 0 0 15px 20px;
	padding-bottom: 8px;
}
.tabs {
    display: flex;
	gap: 4px;
	padding: 0 15px;
	border-bottom: 1px solid #ddd;
	background-color: #f4f7fa;
	margin: 35px 0 20px 0;
	overflow-x: auto;
	overflow-y: hidden;
	min-height: 52px;
	align-items: center;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: #00bec8 transparent;
	position: relative;
	z-index: 1;
	clear: both;
}
/* Style the scrollbar for webkit browsers */
.tabs::-webkit-scrollbar {
	height: 4px;
	background: transparent;
}
.tabs::-webkit-scrollbar-thumb {
	background: #00bec8;
	border-radius: 4px;
}
.tab {
	padding: 10px 18px;
    border: none;
	background-color: transparent;
	color: #666;
	font-size: 14px;
	font-weight: 500;
    cursor: pointer;
	transition: all 0.2s ease;
	border-radius: 20px;
	margin: 6px 0;
	white-space: nowrap;
	min-height: 40px;
	display: flex;
	align-items: center;
	flex: 0 0 auto;
}
.tab:focus {
	outline: none;
	/* Remove focus outline */
}
.tab.active {
	background-color: #00bec8;
	color: white;
	box-shadow: 0 2px 8px rgba(64, 224, 208, 0.3);
}
.tab:hover:not(.active) {
	background-color: rgba(64, 224, 208, 0.1);
	color: #00bec8;
}
.tab-content {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	overflow-x: hidden;
	padding: 15px;
	background-color: white;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	border-radius: 0 0 12px 12px;
}
.tab-panel p {
	color: #333;
	font-size: 16px;
	margin: 20px 0;
	padding-bottom: 10px;
	border-bottom: 1px solid #e0e0e0;
}
.tab-panel {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	overflow-x: hidden;
    display: none;
	padding: 0;
	background-color: white;
	font-size: 16px;
	line-height: 1.6;
}
.tab-panel.active {
	display: block;
	animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(5px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	/* Prevent horizontal scroll */
	background-color: #f4f7fa;
	/* Light blue-gray */
}
.container {
	text-align: left;
	margin: 15px auto;
	padding: 10px 20px 10px 40px;
	/* Increased left padding */
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}
/* Create a wrapper for the header content */
.header-content {
	transform: translateX(40px);
	/* Move content right by 40px */
}
/* Or alternatively, we could try absolute positioning */
.container {
	position: relative;
	/* Add this if using absolute positioning */
}
.container h1 {
	position: relative;
	left: 40px;
	/* Move right by 40px */
	font-size: clamp(28px, 4vw, 42px);
	margin-bottom: 15px;
	color: #2b3e50;
	font-weight: 600;
}
.container p {
	position: relative;
	left: 40px;
	/* Move right by 40px */
	margin-bottom: 70px;
	font-size: clamp(15px, 1.5vw, 18px);
	color: #555;
	line-height: 1.3;
}
.button-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	width: 100%;
	/* Changed from 95% */
	margin: 10px auto 0;
	padding: 0 10px;
	/* Added small padding */
	box-sizing: border-box;
}
.button-grid a {
	text-decoration: none;
}
.grid-button {
	display: flex;
	align-items: center;
	justify-content: center;
    background-color: white;
    border: 1px solid #ddd;
	padding: 15px;
    border-radius: 8px;
	/* Slightly smaller radius */
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
	font-size: clamp(15px, 1.4vw, 20px);
	/* Increased max and vw scaling */
	font-weight: 500;
	color: #00bec8;
	transition: all 0.2s ease-in-out;
	min-height: 90px;
	max-width: 100%;
	/* Ensure buttons don't overflow */
	text-align: center;
	line-height: 1.4;
	aspect-ratio: 3/2;
}
.grid-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
	background-color: #f8fbff;
	border-color: #00bec8;
}
.footer {
	text-align: center;
	margin-top: 15px;
	/* Less margin */
	padding: 10px;
	/* Less padding */
	color: #666;
	font-size: 14px;
}
/* Responsive adjustments */
@media (min-width: 768px) {
	.button-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (min-width: 992px) {
	.button-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}
@media (min-width: 1200px) {
	.button-grid {
		grid-template-columns: repeat(5, 1fr);
		gap: 20px;
		width: 95%;
		margin: 0 auto;
	}
}
@media (max-width: 768px) {
	.container {
		padding: 10px;
		margin: 15px auto;
	}
	.container h1,.container p {
		text-align: center;
		margin-left: auto;
		margin-right: auto;
		position: static;
		/* Remove relative positioning */
		left: 0;
		/* Reset left offset */
	}
	.container h1 {
		font-size: 28px;
	}
	.container p {
		font-size: 16px;
		margin-bottom: 30px;
	}
	.grid-button {
		font-size: 16px;
		min-height: 120px;
		padding: 20px;
	}
	.button-grid {
		gap: 10px;
		/* Reduced gap for mobile */
		padding: 0 5px;
		/* Reduced padding for mobile */
	}
}
/* Global form styles */
.form-input,.form-select,.radio-group {
	width: 100%;
	height: 34px;
	padding: 6px 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	box-sizing: border-box;
	background-color: white;
}
.radio-group {
	display: flex;
	align-items: center;
	gap: 20px;
	background: #f8f9fa;
	padding: 0 10px;
}
.radio-label {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	color: #2b3e50;
}
.form-group label {
	margin-bottom: 4px;
	font-size: 13px;
	color: #666;
}
#submitButton {
    margin-top: 15px;
    text-align: center;
    display: block;
	font-size: 18px;
	padding: 10px 30px;
	min-width: 120px;
	transition: all 0.2s ease;
	background: linear-gradient(to right, #00bec8, #00bec8);
	border: none;
	box-shadow: 0 2px 4px rgba(64, 224, 208, 0.2);
}
#submitButton:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(64, 224, 208, 0.3);
	background: linear-gradient(to right, #00bec8, #00bec8);
}
.link-button {
    background: none;
    border: none;
	color: #2196F3;
	/* Turquoise color */
    text-decoration: underline;
	font-size: 16px;
    cursor: pointer;
	padding: 0;
	/* Remove default padding for buttons */
	transition: all 0.2s ease;
}
.link-button:hover {
	transform: translateY(-1px);
	color: #00bec8;
}
.entity-list-heading {
	color: #2b3e50;
	font-size: 22px;
	margin: 10px 0 15px 0;
	padding: 0 0 10px 0;
	border-bottom: 2px solid #00bec8;
	font-weight: 500;
	line-height: 1.3;
}
.entity-list-heading::before {
	display: none;
}
/* Adjust Kendo Grid styles for compactness */
.k-grid {
	width: 100% !important;
	/* Override Kendo's inline styles */
	font-size: 16px;
	border: none;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	max-width: 100%;
	overflow-x: auto;
}
.k-grid td {
	padding: 8px 12px;
	font-size: 16px;
	/* Base font size for td */
}
.k-grid .k-header {
	padding: 10px 12px;
	font-size: 16px;
	font-weight: 600;
	background: #f8f9fa;
	border-bottom: 2px solid #e0e0e0;
}
/* Make the grid pager more compact */
.k-pager-wrap {
	padding: 4px;
	border-top: 1px solid #e0e0e0;
	margin-top: 20px;
	padding-top: 15px;
}
.k-pager-wrap .k-link {
	border-radius: 4px;
	transition: all 0.2s ease;
}
.k-pager-wrap .k-link:hover {
	background-color: #f0f3f6;
}

.k-pager-numbers .k-link.k-state-selected {
	color: white !important;
	background-color: #00bec8 !important;
}

.k-button.k-primary.k-state-active, .k-button.k-primary:active {
	color: white !important;
	background-color: #00bec8 !important;
}

.k-button.k-primary {
	color: white !important;
	border-color: #00bec8 !important;
	background-color: #00bec8 !important;
}

/* Responsive Grid Styles */
@media (max-width: 768px) {
	.page-container {
		padding: 10px;
	}
	.page-title {
		font-size: 24px;
		margin: 0 0 12px 10px;
	}
	.tabs {
		min-height: 48px;
		padding: 0 10px;
		margin: 30px 0 15px 0;
	}
	.tab {
		padding: 8px 14px;
		font-size: 13px;
		min-height: 36px;
		white-space: nowrap;
	}
	.tab-content {
		padding: 10px;
	}
	/* Force hide the grid header */
	.k-grid-header {
		display: none !important;
	}
	/* Override Kendo's table layout */
	.k-grid table,.k-grid tbody,.k-grid tr {
		display: block !important;
		border: none !important;
	}
	/* Card style for each row */
	.k-grid tr {
		margin-bottom: 4px;
		background: white;
		border: 1px solid #e0e0e0;
		border-radius: 4px;
		padding: 4px 6px;
		/* Reduced from 8px 6px */
	}
	/* Grid values */
	.grid-value {
		grid-column: 3;
		justify-self: end;
		font-size: 12px;
		white-space: nowrap;
	}
	/* Cell styles - need !important for grid layout */
	.k-grid td {
		display: grid !important;
		grid-template-columns: 90px minmax(10px, 1fr) 100px !important;
		justify-items: start !important;
		padding: 2px 4px;
		min-height: 24px;
		font-size: 12px;
		/* Base font size for mobile */
	}
	/* Labels */
	.k-grid td::before {
		content: attr(data-label);
		font-size: 12px;
		color: #666;
		text-transform: none;
		grid-column: 1;
	}
	/* Entity and status text */
	td.entity-column > *,td.status-column > * {
		font-size: 12px;
	}
	/* Buttons */
	.link-button {
		padding: 2px 4px;
		font-size: 12px;
		min-width: 55px;
	}
	/* Checkbox column - needs some !important for layout */
	td.checkbox-column {
		display: flex !important;
		flex-direction: row !important;
		justify-content: space-between !important;
		align-items: center;
		padding: 2px 6px;
	}
	/* Make the search box full width */
	.k-grid-toolbar {
		padding: 10px !important;
	}
	.k-grid-toolbar input.k-textbox {
		width: 100% !important;
		margin: 0 !important;
		padding: 8px !important;
	}
	/* Adjust the pager */
	.k-pager-wrap {
		padding: 15px 10px !important;
		border-top: 1px solid #eee !important;
		display: flex !important;
		justify-content: center !important;
		flex-wrap: wrap !important;
		gap: 8px !important;
	}
	.k-pager-wrap .k-pager-info {
		width: 100% !important;
		text-align: center !important;
		order: -1 !important;
	}
	/* Entity list heading */
	.entity-list-heading {
		font-size: 16px;
		margin: 8px 0 12px 0;
		padding: 0 0 8px 0;
		text-align: center;
	}
	/* Submit button */
	#submitButton {
		width: 100%;
		margin: 8px 0;
		font-size: 14px;
		padding: 8px 20px;
	}
	/* Add visual indicator for scrollable tabs */
	.tabs::before,.tabs::after {
		width: 25px;
	}
	/* Remove these special cases */
	.tab[data-tab="entity-info"],.tab[data-tab="chapter-resolution"] {
		font-size: 13px;
		/* Same as other tabs */
	}
	.k-grid {
		font-size: 14px;
	}
}
/* Additional adjustments for very small screens */
@media (max-width: 480px) {
	.tabs {
		min-height: 44px;
		padding: 0 8px;
		margin: 25px 0 12px 0;
	}
	.tab {
		padding: 6px 12px;
		font-size: 12px;
		min-height: 34px;
	}
	/* Remove the content override */
	.tab[data-tab="entity-info"]::after,.tab[data-tab="chapter-resolution"]::after {
		content: none;
	}
	.k-grid {
		font-size: 12px;
	}
	.page-title {
		font-size: 20px;
		text-align: center;
		margin: 0 0 10px 0;
	}
}
/* iPhone-specific adjustments */
@media (max-width: 390px) {
	.page-container {
		padding: 8px !important;
	}
	.k-grid tr {
		margin-bottom: 6px !important;
	}
	.k-grid td {
		padding: 3px 6px !important;
		min-height: 24px !important;
	}
	/* Make labels even smaller */
	.k-grid td::before {
		font-size: 11px !important;
		margin-right: 6px !important;
	}
	/* Smaller buttons */
	.link-button {
		padding: 2px 4px !important;
		font-size: 11px !important;
		min-width: 70px !important;
	}
	/* Adjust search box */
	.k-grid-toolbar input.k-textbox {
		padding: 6px !important;
		font-size: 12px !important;
	}
	/* Adjust pager */
	.k-pager-wrap {
		padding: 8px 6px !important;
		font-size: 11px !important;
	}
}
/* Move desktop styles into a media query */
@media (min-width: 769px) {
	.grid-value {
		grid-column: 3 !important;
		justify-self: end !important;
		font-size: 16px !important;
		min-width: fit-content !important;
		width: auto !important;
		white-space: nowrap !important;
	}
	td.entity-column > *,td.status-column > * {
		font-size: 16px !important;
	}
	.link-button {
		padding: 4px 8px !important;
		font-size: 16px !important;
		min-width: 55px !important;
	}
}
/* Specific margin for grid values containing buttons */
td.view-entity-column .grid-value,td.view-report-column .grid-value,td.view-capital-column .grid-value {
	margin-right: 0 !important;
}
/* Grid row hover effect */
.k-grid tr:hover {
	background-color: #f8fbff !important;
	transition: background-color 0.2s ease;
}
/* Style the search box */
.k-grid-toolbar input.k-textbox {
	border: 2px solid #e0e0e0;
	border-radius: 6px;
	padding: 8px 12px;
	transition: all 0.2s ease;
}
.k-grid-toolbar input.k-textbox:focus {
	border-color: #00bec8;
	box-shadow: 0 0 0 3px rgba(0, 153, 204, 0.1);
	outline: none;
}
/* Checkbox styling */
.row-checkbox {
	width: 18px;
	height: 18px;
	border: 2px solid #00bec8;
	border-radius: 4px;
	transition: all 0.2s ease;
}
.row-checkbox:checked {
	background-color: #00bec8;
	border-color: #00bec8;
}
/* Submit Project styles */
.submit-project-container {
	padding: 20px;
	background: white;
}
.final-date {
	font-size: 16px;
	color: #333;
	margin-bottom: 15px;
}
.submission-note {
	color: #666;
	margin-bottom: 20px;
}
.form-status-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
}
.form-status-table th,.form-status-table td {
	padding: 12px;
	border: 1px solid #ddd;
	text-align: left;
}
.form-status-table th {
	background: #f8f9fa;
	font-weight: 500;
}
.form-link {
	color: #0099cc;
    text-decoration: none;
}
.form-note {
	color: #666;
	font-size: 0.9em;
	margin-top: 5px;
}
.date-input {
	padding: 6px;
	border: 1px solid #ddd;
	border-radius: 4px;
	margin-right: 8px;
}
.update-btn {
	padding: 6px 12px;
	background: #00bec8;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}
.updated-cell {
	background-color: #e6ffe6 !important;
	/* Light green */
	color: #333 !important;
	padding: 12px !important;
}
.needs-update-cell {
    /* Light turquoise background */
    background-color: #ffa50070 !important;
    /* Dark turquoise text */
    color: black !important;
    padding: 12px !important;
}
/* Make the "Not Updated" text stand out */
.needs-update-cell:empty::before {
    content: 'Not Updated';
    color: #00858e;
    font-weight: 500;
}
/* Add a subtle transition effect */
.form-status-table td {
	transition: background-color 0.2s ease;
}
.submit-btn {
	padding: 10px 20px;
	background: #00bec8;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
	margin-top: 20px;
}
/* Page header layout */
.page-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
	padding: 0 15px;
	position: relative;
	/* Add this */
	z-index: 2;
	/* Add this to ensure button stays on top */
}
.return-btn {
	padding: 8px 16px;
	background: #2b3e50;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	transition: all 0.2s ease;
	margin-bottom: 25px;
	/* Increased spacing */
	position: relative;
	/* Add this */
	z-index: 2;
	/* Add this to ensure button stays on top */
}
/* Mobile adjustments */
@media (max-width: 768px) {
	.page-header {
		flex-direction: column;
		padding: 0 10px;
		margin-bottom: 20px;
	}
	.return-btn {
		font-size: 13px;
		padding: 6px 12px;
		margin-bottom: 20px;
	}
	.tabs {
		min-height: 48px;
		padding: 0 10px;
		margin: 30px 0 15px 0;
	}
	.tab {
		padding: 8px 14px;
		font-size: 13px;
		min-height: 36px;
		white-space: nowrap;
	}
	/* Remove these special cases */
	.tab[data-tab="entity-info"],.tab[data-tab="chapter-resolution"] {
		font-size: 13px;
		/* Same as other tabs */
	}
}
/* Small mobile adjustments */
@media (max-width: 480px) {
	.page-header {
		padding: 0 8px;
		margin-bottom: 15px;
	}
	.tabs {
		min-height: 44px;
		padding: 0 8px;
		margin: 25px 0 12px 0;
	}
	.tab {
		padding: 6px 12px;
		font-size: 12px;
		min-height: 34px;
	}
	/* Remove the content override */
	.tab[data-tab="entity-info"]::after,.tab[data-tab="chapter-resolution"]::after {
		content: none;
	}
}
/* Entity Information Styles */
.entity-info-container {
	background: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	overflow-x: hidden;
}
.entity-header {
	background: #f8f9fa;
	padding: 15px;
	border-radius: 6px;
	margin-bottom: 25px;
}
.entity-details {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 15px;
	margin-bottom: 10px;
}
.detail-item {
	color: #666;
	font-size: 14px;
}
.detail-item span {
	color: #2b3e50;
	font-weight: 500;
	margin-left: 5px;
}
.form-grid {
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin-bottom: 40px;
}
.form-input,.form-select,.form-textarea {
	width: 100%;
	padding: 8px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	background-color: white;
	box-sizing: border-box;
}
.form-input:focus {
	border-color: #00bec8;
	outline: none;
	box-shadow: 0 0 0 3px rgba(0, 153, 204, 0.1);
}
.checkbox-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.checkbox-label {
	color: #444;
}
/* Responsive adjustments */
@media (max-width: 768px) {
	.form-section {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}
	.section-title {
		margin-bottom: 30px;
	}
	.form-grid {
		gap: 30px;
		margin-bottom: 30px;
	}
	.form-group {
		margin-bottom: 30px;
	}
	.form-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.entity-details {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	.entity-info-container {
		padding: 15px;
	}
	.form-group {
		margin-bottom: 12px;
	}
}
/* Form Select Styles */
.form-select {
	width: 100%;
	padding: 8px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	color: #2b3e50;
	background-color: white;
	transition: all 0.2s ease;
	appearance: none;
	/* Remove default arrow */
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232b3e50' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 12px;
	cursor: pointer;
}
.form-select:focus {
	border-color: #00bec8;
	outline: none;
	box-shadow: 0 0 0 3px rgba(0, 153, 204, 0.1);
}
/* County Grid Styles */
.county-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.county-column {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.county-state {
	font-weight: 500;
	color: #2b3e50;
	text-transform: capitalize;
	font-size: 14px;
	margin-bottom: 5px;
}
/* Save Button Style */
.save-btn {
	padding: 10px 20px;
	background: #00bec8;
	background-image: linear-gradient(#00bec8, #0088bb);
	font-size: 16px;
	transition: all 0.2s ease;
	box-shadow: 0 2px 4px rgba(0, 153, 204, 0.2);
}
.save-btn:hover {
	box-shadow: 0 4px 8px rgba(0, 153, 204, 0.3);
	background: #0078a3;
	background-image: linear-gradient(#0078a3, #006d8f);
}
.form-actions {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #e0e0e0;
}
/* Checkbox Styling */
.checkbox-label input[type="checkbox"] {
	width: 16px;
	height: 16px;
	border-radius: 3px;
	margin-right: 8px;
	top: 2px;
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
	.county-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	.county-column {
		border-bottom: 1px solid #eee;
		padding-bottom: 15px;
	}
	.county-column:last-child {
		border-bottom: none;
	}
	.form-select {
		font-size: 13px;
		padding: 6px 10px;
		background-position: right 8px center;
	}
	.save-btn {
		width: 100%;
		padding: 12px;
	}
}
/* Address Group Styling */
.form-group.address-group {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: center;
	width: 100%;
	/* Match parent width */
	max-width: 100%;
	/* Ensure no overflow */
}
.address-group label {
	font-size: 14px;
	white-space: nowrap;
	margin: 0;
}
.address-group .zip-input {
	width: 100px;
	margin-right: 20px;
}
.address-group .plus-code-input {
	width: 200px;
	/* Increased from 160px to 200px */
}
/* Mobile adjustments */
@media (max-width: 768px) {
	.form-group.address-group {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}
	.address-group label {
		margin-bottom: 8px;
	}
	.address-group .zip-input,.address-group .plus-code-input {
		width: 100%;
		margin-right: 0;
	}
}
/* Style readonly/disabled inputs to look like regular text */
.form-input[readonly],.form-input[disabled] {
	background-color: #f8f9fa;
	border-color: #ddd;
	cursor: not-allowed;
}
/* Add spacing between address sections */
.form-section + .form-section {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid #eee;
}
/* Make labels more prominent */
/* Required asterisk styling */
.required {
	color: #cc0000;
	font-weight: bold;
}
/* Mobile adjustments */
@media (max-width: 768px) {
	.zip-input {
		width: 100%;
		/* Full width on mobile */
	}
}
/* Vision, Trends & Goals Styles */
.form-grid-full {
	display: flex;
	flex-direction: column;
	gap: 25px;
}
.form-textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	line-height: 1.5;
	color: #2b3e50;
	transition: all 0.2s ease;
	resize: vertical;
	min-height: 120px;
	font-family: inherit;
}
.form-textarea:focus {
	border-color: #00bec8;
	outline: none;
	box-shadow: 0 0 0 3px rgba(0, 153, 204, 0.1);
}
.form-textarea::placeholder {
	color: #999;
}
/* Mobile adjustments */
@media (max-width: 768px) {
	.form-textarea {
		font-size: 13px;
		padding: 8px;
	}
}
/* Tablet adjustments */
@media (max-width: 1024px) {
	.tabs {
		padding: 0 15px;
		height: 40px;
	}
	.tab {
		padding: 8px 15px;
		font-size: 13px;
		height: 35px;
	}
}
/* Remove the gradient indicators */
.tabs::before,.tabs::after {
	display: none;
}
/* Form section spacing */
.form-section {
	padding: 25px;
	margin-bottom: 25px;
}
.form-section:last-child {
	margin-bottom: 0;
}
/* Capital Container Styles */
.capital-container {
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);  /* Match tab-content shadow */
	overflow-x: auto;
}
/* Add New Capital Section - Match Projects styling */
.capital-container .form-section:first-child {
	background: #f8f9fa;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	padding: 25px;
	margin-bottom: 30px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}
/* Capital List Section */
.capital-container .form-section:last-child {
	border-top: 2px solid #f0f0f0;
	padding-top: 20px;
}
.create-btn {
	padding: 10px 20px;
	background: #00bec8;
	color: white;
	border: none;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
}
.create-btn:hover {
	background: #0078a3;
	transform: translateY(-1px);
}
/* Capital Tabs Section */
.capital-container .form-section:last-child {
	margin-top: 40px;
}
.capital-tabs {
	display: flex;
	gap: 2px;
	border-bottom: 1px solid #ddd;
	background-color: #f4f7fa;
	overflow-x: auto;
	overflow-y: hidden;
	min-height: 42px;
	align-items: flex-end;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: #00bec8 transparent;
}
.capital-tab {
	padding: 8px 16px;
	border: 1px solid #ddd;
	border-bottom: none;
	background-color: #f8f9fa;
	color: #666;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	border-radius: 4px 4px 0 0;
	margin-bottom: -1px;
	white-space: nowrap;
	min-height: 36px;
	display: flex;
	align-items: center;
	flex: 0 0 auto;
}
.capital-tab.active {
	background-color: white;
	color: #00bec8;
	border-bottom: 2px solid #00bec8;
}
/* Capital Tab Content */
.capital-tab-panel {
	display: none;
	padding: 20px 0;
}
.capital-tab-panel.active {
	display: block;
}
/* Mobile adjustments */
@media (max-width: 768px) {
	.capital-container {
		padding: 15px;
	}
	.capital-container .form-section:first-child {
		padding: 15px;
	}
	.capital-tabs {
		gap: 1px;
	}
	.capital-tab {
		padding: 6px 12px;
		font-size: 13px;
		min-height: 32px;
	}
}
/* Capital Grid Styles */
.inventory-link {
	color: #0099cc;
	text-decoration: none;
	transition: color 0.2s ease;
	cursor: pointer;
}
.inventory-link:hover {
	color: #0078a3;
	text-decoration: underline;
}
.status-column {
	color: #2b3e50;
}
/* Add status color indicators */
.status-column[data-status="Renewal"] {
	color: #ff9800;
}
.status-column[data-status="Retirement"] {
	color: #f44336;
}
.status-column[data-status="Replacement"] {
	color: #00bec8;
}
#existingCapitalGrid .k-grid-header {
	background: #f4f7fa;
}
#existingCapitalGrid .k-grid-header th {
	font-weight: 500;
	color: #2b3e50;
	padding: 12px 16px;
}
#existingCapitalGrid .k-grid td {
	padding: 10px 16px;
	line-height: 1.4;
}
/* Mobile adjustments for capital grid */
@media (max-width: 768px) {
	#existingCapitalGrid .k-grid td {
		padding: 8px 12px;
		font-size: 13px;
	}
	#existingCapitalGrid .inventory-link {
		font-size: 13px;
	}
}
/* Section Title Styles */
.tab-panel-title {
	color: #2b3e50;
	font-size: 24px;
	font-weight: 500;
	margin: 0 0 25px 0;
	padding-bottom: 10px;
	border-bottom: 2px solid #00bec8;
}
/* Mobile adjustments */
@media (max-width: 768px) {
	.tab-panel-title {
		font-size: 20px;
		margin: 0 0 20px 0;
	}
}
/* Update Activity cell styling */
.form-status-table .update-form {
	margin-top: 12px;
	display: flex;
	gap: 8px;
	align-items: center;
}
.form-status-table .date-input {
	width: 120px;
	padding: 6px 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
}
.form-status-table .update-btn {
	padding: 6px 12px;
	background: #00bec8;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.2s ease;
}
.form-status-table .update-btn:hover {
	background: #0078a3;
}
.form-status-table .form-note {
	color: #666;
	margin: 8px 0;
	font-size: 0.9em;
}
.form-status-table td {
	padding: 15px;
	vertical-align: top;
}
.plus-code-input {
	width: 120px;
	/* Make Plus Code input shorter like ZIP */
	text-transform: uppercase;
	/* Force uppercase for plus codes */
}
/* Ensure consistent spacing */
.form-group:last-child {
	margin-bottom: 0;
}
.capital-panel-title {
	color: #2b3e50;
	font-size: 18px;
	font-weight: 500;
	margin: 0 0 20px 0;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
}
/* Capital Form Structure */
.create-capital-form {
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
/* Create Capital Form Header Styles */
.form-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 25px;
	padding: 20px;
	border-bottom: 1px solid #eee;
}
.form-header h2 {
	font-size: 24px;
	font-weight: 500;
	color: #2b3e50;
	margin: 0;
}
.return-to-capital-btn {
	padding: 8px 16px;
	background: #f4f7fa;
	border: 1px solid #ddd;
	border-radius: 4px;
	color: #666;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
}
.return-to-capital-btn:hover {
	background: #e9ecef;
	color: #333;
}
/* Capital Form Tabs */
.capital-form-tabs {
	display: flex;
	gap: 2px;
	border-bottom: 2px solid #e0e0e0;
	padding: 0 25px;
	margin: 0;
	background: #f8f9fa;
}
.capital-form-tab {
	padding: 12px 24px;
	background: #f5f5f5;
	border: none;
	border-radius: 4px 4px 0 0;
	font-size: 14px;
	color: #666;
	cursor: pointer;
	transition: all 0.2s ease;
	position: relative;
	border: 1px solid transparent;
	border-bottom: none;
}
.capital-form-tab:hover:not(.active) {
	background: rgba(0, 153, 204, 0.05);
	color: #00bec8;
}
.capital-form-tab.active {
	background: white;
	color: #00bec8;
	font-weight: 500;
	border-color: #e0e0e0;
	margin-bottom: -2px;
	padding-top: 14px;
	/* Slightly taller */
	box-shadow: 0 -2px 8px rgba(0, 153, 204, 0.1);
}
.capital-form-tab.active::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: #00bec8;
	border-radius: 2px 2px 0 0;
}
/* Content Wrapper */
.form-content-wrapper {
	padding: 0;
	/* Remove padding from wrapper */
}
/* Tab Content Sections */
.form-section[data-form-section] {
	background: #f8f9fa;
	border: 1px solid #eee;
	border-radius: 6px;
	padding: 25px;
	display: none;
	margin: 25px;
	/* Move padding to margin to maintain spacing */
}
.form-section[data-form-section].active {
	display: block;
}
/* Inner Form Sections */
.form-section[data-form-section] .form-section {
	background: transparent;
	border: none;
	border-radius: 0;
	padding: 0;
	margin-bottom: 25px;
}
.form-section[data-form-section] .form-section:last-child {
	margin-bottom: 0;
}
/* Section Titles */
.section-title {
	padding-bottom: 10px;
	margin-bottom: 25px;
}
/* Form Actions */
.form-actions {
	padding: 20px 25px;
	border-top: 1px solid #eee;
	text-align: right;
}
.save-btn {
	padding: 10px 24px;
	background: #00bec8;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
}
.save-btn:hover {
	background: #0078a3;
}
/* Annual Expense Styles */
.annual-expense-container {
	margin-bottom: 30px;
}
.required-label {
	font-weight: 500;
	color: #2b3e50;
	display: block;
	margin-bottom: 8px;
}
/* Annual Expense Table */
.expense-table {
	width: 100%;
	overflow-x: auto;
}
.expense-table table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
}
.expense-table th {
	background: #f4f7fa;
	padding: 12px;
	text-align: left;
	font-weight: 500;
	color: #2b3e50;
	border: 1px solid #ddd;
}
.expense-table td {
	padding: 8px 12px;
	border: 1px solid #ddd;
	position: relative;
}
/* Column widths */
.expense-table th:first-child {
	width: 20%;
	/* Phase column */
}
.expense-table th:nth-child(2) {
	width: 12%;
	/* Total column */
}
.expense-table th:not(:first-child):not(:nth-child(2)) {
	width: 11%;
	/* Year columns */
}
.expense-table .expense-input {
	width: 100%;
	padding: 6px 16px;
	border: 1px solid transparent;
	background: transparent;
	text-align: right;
	font-size: 14px;
	box-sizing: border-box;
}
.expense-table .total-cell,.expense-table .difference-cell {
	background: #f8f9fa;
	text-align: right;
	font-weight: 500;
	padding-right: 20px;
}
/* Dollar sign positioning */
.expense-table td:not(:first-child)::before {
	content: '$';
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: #666;
	font-size: 14px;
}
/* File Upload Section */
.file-upload-section {
	display: grid;
	grid-template-columns: 350px 1fr;
	gap: 30px;
	margin-top: 30px;
}
.upload-form-side {
	padding-right: 30px;
	border-right: 1px solid #e0e0e0;
}
.file-input-wrapper {
	position: relative;
}
.file-input {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}
.file-input-text {
	flex: 1;
	padding: 8px 12px;
	background: #f8f9fa;
	border: 1px solid #ddd;
	border-radius: 4px;
}
/* Responsive adjustments */
@media (max-width: 1200px) {
	.file-upload-section {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.upload-form-side {
		padding-right: 0;
		border-right: none;
		border-bottom: 1px solid #e0e0e0;
		padding-bottom: 20px;
	}
	.expense-table {
		font-size: 13px;
	}
	.expense-table th,.expense-table td {
		padding: 8px 6px;
	}
}
@media (max-width: 768px) {
	.expense-table th:first-child {
		width: 25%;
	}
	.expense-table th:not(:first-child) {
		width: 12.5%;
	}
}
/* Location Fields Styling */
.location-fields {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	/* Increased from 15px to 25px */
	margin-top: 10px;
}
.location-field {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.location-field label {
	font-size: 13px;
	color: #666;
}
.location-field input {
	padding: 8px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	background: white;
}
/* Map Container Styling */
.map-container {
	width: 100%;
	height: 300px;
	background: #f8f9fa;
	border: 1px solid #ddd;
	border-radius: 4px;
	margin: 10px 0;
}
.map-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #666;
	font-style: italic;
	background: #f8f9fa;
	position: relative;
}
.coordinates {
	position: absolute;
	top: 10px;
	left: 10px;
	background: rgba(255, 255, 255, 0.9);
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 13px;
	color: #2b3e50;
}
.map-controls {
	position: absolute;
	top: 10px;
	right: 10px;
	display: flex;
	gap: 5px;
}
.map-btn {
	padding: 4px 8px;
	background: white;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 13px;
	color: #666;
	cursor: not-allowed;
}
.view-larger-link {
	display: block;
	text-align: right;
	color: #0099cc;
	font-size: 13px;
	text-decoration: none;
	margin-top: 5px;
}
.view-larger-link:hover {
	text-decoration: underline;
}
/* Responsive adjustments */
@media (max-width: 768px) {
	.location-fields {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	.map-container {
		height: 250px;
	}
}
/* General Info Container Layout */
.general-info-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	/* Two equal columns */
	gap: 30px;
}
/* Owner Information Grid */
.owner-info-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	/* Two columns */
	gap: 20px;
}
/* Property Information Grid */
.property-info-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
/* Responsive layout */
@media (max-width: 1200px) {
	.general-info-container {
		grid-template-columns: 1fr;
		/* Stack on smaller screens */
	}
}
@media (max-width: 768px) {
	.owner-info-grid,.property-info-grid {
		grid-template-columns: 1fr;
		/* Single column on mobile */
		gap: 15px;
	}
}
/* Archive Capital Section */
.archive-info-container {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.archive-header {
	display: flex;
	align-items: center;
	gap: 30px;
}
.archive-checkbox {
	margin: 0;
	display: flex;
	align-items: center;
}
.archive-checkbox .checkbox-label {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #2b3e50;
}
.archive-header .form-group {
	margin: 0;
	flex: 0 0 200px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.archive-header .form-group label {
	margin: 0;
	white-space: nowrap;
}
.archive-header .form-group input {
	flex: 1;
}
.comments-group {
	margin-top: 0;
}
/* Responsive adjustments */
@media (max-width: 768px) {
	.archive-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}
	.archive-header .form-group {
		width: 100%;
	}
}
/* Capital Header Info */
.capital-header-info {
	background: #f8f9fa;
	border: 1px solid #eee;
	border-radius: 6px;
	padding: 20px;
	margin: 20px 25px 25px;
	/* Added 25px margin-bottom */
}
.info-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	margin-bottom: 10px;
}
.info-item {
	display: flex;
	gap: 8px;
	font-size: 14px;
}
.info-label {
	color: #666;
	white-space: nowrap;
}
.info-value {
	color: #2b3e50;
	font-weight: 500;
}
.last-updated {
	color: #666;
	font-size: 13px;
	font-style: italic;
}
/* Responsive adjustments */
@media (max-width: 992px) {
	.info-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 768px) {
	.info-grid {
		grid-template-columns: 1fr;
	}
	.capital-header-info {
		margin: 15px 20px 0;
		padding: 15px;
	}
}
/* Historic Maintenance Styles */
.maintenance-form {
	margin-bottom: 40px;
}
.maintenance-inputs {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.add-maintenance-btn {
	align-self: flex-start;
	padding: 10px 20px;
	background: #00bec8;
	color: white;
	border: none;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
}
.add-maintenance-btn:hover {
	background: #0088bb;
}
.maintenance-grid-container {
	margin-top: 30px;
	margin-bottom: 20px;
	/* Add bottom margin */
}
/* Ensure grid takes full width and has proper spacing */
#maintenanceGrid {
	width: 100%;
	margin-top: 15px;
}
/* Style the grid header */
#maintenanceGrid .k-grid-header {
	background: #f4f7fa;
}
#maintenanceGrid .k-grid-header th {
	padding: 12px 16px;
	font-weight: 500;
}
/* Cost Input Styling */
.cost-input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
}
.dollar-sign {
	position: absolute;
	left: 12px;
	color: #666;
	z-index: 1;
}
#maintenanceCost {
	padding-left: 25px;
}
/* Remove the previous cost input styles */
.form-group.cost-input::before {
	display: none;
}
/* Comments Section Styles */
.comments-form {
	margin-bottom: 40px;
}
.comments-inputs {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.add-comment-btn {
	align-self: flex-start;
	padding: 10px 20px;
	background: #00bec8;
	color: white;
	border: none;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
}
.add-comment-btn:hover {
	background: #0088bb;
}
.comments-grid-container {
	margin-top: 30px;
	margin-bottom: 20px;
}
#commentsGrid {
	width: 100%;
	margin-top: 15px;
}
#commentsGrid .k-grid-header {
	background: #f4f7fa;
}
#commentsGrid .k-grid-header th {
	padding: 12px 16px;
	font-weight: 500;
}
.file-link {
	color: #0099cc;
	text-decoration: none;
}
.file-link:hover {
	text-decoration: underline;
}
/* Photos Section Styles */
.photos-form {
	margin-bottom: 40px;
}
.photos-inputs {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.add-photo-btn,.update-primary-btn {
	align-self: flex-start;
	padding: 10px 20px;
	background: #00bec8;
	color: white;
	border: none;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
}
.add-photo-btn:hover,.update-primary-btn:hover {
	background: #0088bb;
}
.update-primary-btn {
	margin-top: 20px;
}
.photos-grid-container {
	margin-top: 30px;
	margin-bottom: 20px;
}
#photosGrid {
	width: 100%;
	margin-top: 15px;
}
#photosGrid .k-grid-header {
	background: #f4f7fa;
}
#photosGrid .k-grid-header th {
	padding: 12px 16px;
	font-weight: 500;
}
.photo-link {
	color: #0099cc;
	text-decoration: none;
}
.photo-link:hover {
	text-decoration: underline;
}
.checkbox-label {
	font-size: 14px;
	color: #2b3e50;
}
.checkbox-label input[type="checkbox"] {
	margin: 0;
}
/* Files Section Styles */
.files-form {
	margin-bottom: 40px;
}
.files-inputs {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.add-file-btn {
	color: #333;
}
.add-file-btn::-webkit-file-upload-button {
	background: #fff;
	border: 1px solid #ddd;
	padding: 4px 12px;
	border-radius: 4px;
	font-size: 14px;
	cursor: pointer;
	color: #333;
	margin-right: 8px;
}
.add-file-btn::-webkit-file-upload-button:hover {
	background: #f5f5f5;
}
/* For Firefox */
.add-file-btn::file-selector-button {
	background: #fff;
	border: 1px solid #ddd;
	padding: 4px 12px;
	border-radius: 4px;
	font-size: 14px;
	cursor: pointer;
	color: #333;
	margin-right: 8px;
}
.add-file-btn::file-selector-button:hover {
	background: #f5f5f5;
}
.files-grid-container {
	margin-top: 30px;
	margin-bottom: 20px;
}
#filesGrid {
	width: 100%;
	margin-top: 15px;
}
#filesGrid .k-grid-header {
	background: #f4f7fa;
}
#filesGrid .k-grid-header th {
	padding: 12px 16px;
	font-weight: 500;
}
/* Related Projects Section */
.related-projects {
	background: #f8f9fa;
	border: 1px solid #eee;
	border-radius: 6px;
	padding: 20px;
	margin: 0 25px 25px;
}
.project-prompt {
	color: #666;
	font-size: 14px;
	margin: 10px 0 0 0;
	/* Added top margin since section-title has bottom border */
	font-style: italic;
}
.project-link {
	color: #0099cc;
	text-decoration: none;
	font-style: normal;
}
.project-link:hover {
	text-decoration: underline;
}
/* Projects Section Styles - Update */
.projects-container .form-section, .capital-container .form-section {
	background: #f8f9fa;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	padding: 25px;
	margin-bottom: 30px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}
.projects-list-section {
	margin-top: 40px;
	/* Add more space between sections */
	border-top: 2px solid #f0f0f0;
	/* Add a subtle divider */
	padding-top: 20px;
}
/* Keep existing projects styles below */
.projects-tabs {
	display: flex;
	gap: 2px;
	margin-bottom: 20px;
}
.projects-tab {
	padding: 10px 20px;
	background: #f5f5f5;
	border: none;
	cursor: pointer;
	transition: all 0.2s ease;
}
.projects-tab.active {
	background: #00bec8;
	color: white;
}
.projects-tab:hover:not(.active) {
	background: rgba(0, 153, 204, 0.1);
	color: #00bec8;
}
.projects-filters {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}
.filter-group {
	flex: 1;
}
.projects-search {
	margin-bottom: 20px;
}
.search-input {
	width: 100%;
	padding: 8px;
	border: 1px solid #ddd;
	border-radius: 4px;
}
.grid-link {
	color: #0099cc;
	text-decoration: none;
}
.grid-link:hover {
	color: #00bec8;
}
/* Projects Section Styles */
.create-capital-link {
	margin: 10px 0 30px 0;
	/* Increased bottom margin from 20px to 30px */
}
.create-capital-link .link-button {
	color: #00bec8;
	text-decoration: none;
	border: none;
	background: none;
	padding: 0;
	font-size: 14px;
	cursor: pointer;
	transition: color 0.2s ease;
}
.create-capital-link .link-button:hover {
	color: #007399;
	text-decoration: underline;
}
#createProjectBtn {
	background: #00bec8;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.2s ease;
}
#createProjectBtn:hover {
	background: #007399;
}
/* Project Form Tab Styles */
.project-form-tabs {
	display: flex;
	gap: 4px;
	padding: 0 15px;
	border-bottom: 1px solid #ddd;
	background-color: #f4f7fa;
	margin: 35px 0 20px 0;
	overflow-x: auto;
	overflow-y: hidden;
	min-height: 52px;
	align-items: center;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: #00bec8 transparent;
}
.project-form-tab {
	padding: 10px 18px;
	border: none;
	background-color: transparent;
	color: #666;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	border-radius: 20px;
	margin: 6px 0;
	white-space: nowrap;
	min-height: 40px;
	display: flex;
	align-items: center;
}
.project-form-tab:hover:not(.active) {
	background-color: rgba(0, 153, 204, 0.1);
	color: #00bec8;
}
.project-form-tab.active {
	background-color: #00bec8;
	color: white;
	box-shadow: 0 2px 8px rgba(0, 153, 204, 0.3);
}
/* Project Form Sections */
.project-form-section {
	display: none;
	padding: 20px;
	overflow: auto;
}
.project-form-section.active {
	display: block;
}
/* Project Details Grid Layout */
.project-details-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 30px;
	background: #f8f9fa;
	padding: 20px;
	border-radius: 8px;
}
.details-column {
	min-width: 0;
}
.column-title {
	color: #2b3e50;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 20px;
	padding-bottom: 8px;
	border-bottom: 2px solid #e0e0e0;
}
/* Responsive adjustments */
@media (max-width: 768px) {
	.project-details-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}
.delete-project-section {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #e0e0e0;
}
.checkbox-label {
	margin-bottom: 15px;
}
/* Project Estimator Styles */
.estimator-note {
	color: #666;
	font-style: italic;
	margin-bottom: 20px;
}
.estimator-inputs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-bottom: 30px;
}
.estimation-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 20px;
}
.estimation-table th,.estimation-table td {
	padding: 12px;
	text-align: left;
	border-bottom: 1px solid #ddd;
}
.estimation-table th {
	background-color: #f8f9fa;
	font-weight: 600;
}
.estimation-table .total-row {
	font-weight: 600;
	background-color: #f8f9fa;
}
.estimation-table .total-row td {
	border-top: 2px solid #ddd;
}
#seeEstimation {
	background: #00bec8;
	color: white;
	border: none;
	height: 50px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	align-self: center;
}
#seeEstimation:hover {
	background: #007399;
	transform: translateY(-1px);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* File Input Styling */
.file-upload-wrapper {
	display: flex;
	gap: 8px;
	align-items: center;
}
.file-name-input {
	border: 1px solid #ddd;
	padding: 4px 8px;
	font-size: 14px;
	border-radius: 4px;
	width: 120px;
	background: #fff;
}
.relate-files-btn {
	background: #fff;
	border: 1px solid #ddd;
	padding: 4px 12px;
	border-radius: 4px;
	font-size: 14px;
	cursor: pointer;
	color: #333;
}
.relate-files-btn:hover {
	background: #f5f5f5;
}
/* Funding Table Styles */
.funding-grid-container {
	background: white;
	padding: 20px;
	border-radius: 8px;
	margin-top: 20px;
}
.funding-table {
	width: 100%;
	border-collapse: collapse;
}
.funding-table th {
	padding: 12px;
	text-align: left;
	font-weight: 600;
	border-bottom: 2px solid #ddd;
	background: #f8f9fa;
}
.funding-table td {
	padding: 12px;
	border-bottom: 1px solid #ddd;
	vertical-align: middle;
}
/* Type Column */
.funding-table td:first-child {
	color: #333;
	font-weight: 500;
	width: 200px;
}
/* Notes Column */
.grid-textarea {
	width: 100%;
	min-height: 60px;
	padding: 8px;
	border: 1px solid #ddd;
	border-radius: 4px;
	resize: none;
	font-family: inherit;
	font-size: 14px;
}
/* Add File Column */
.funding-table td:nth-child(3) {
	width: 200px;
}
.add-file-btn {
	font-size: 14px;
}
.add-file-btn::-webkit-file-upload-button,.add-file-btn::file-selector-button {
	padding: 6px 12px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	cursor: pointer;
}
/* Documents Column */
.funding-table td:nth-child(4) {
	width: 200px;
	color: #00bec8;
}
/* Amount Column */
.funding-table td:last-child {
	width: 150px;
}
.amount-input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
}
.amount-input-wrapper::before {
	content: '$';
	position: absolute;
	left: 8px;
	color: #666;
}
.amount-input {
	width: 100%;
	max-width: 100px;
	padding: 6px 8px 6px 24px;
	border: 1px solid #ddd;
	border-radius: 4px;
	text-align: right;
	font-size: 14px;
	box-sizing: border-box;
	height: 34px;  /* Match global form input height */
	transition: all 0.2s ease;
}
.amount-input:focus {
	border-color: #00bec8;
	outline: none;
	box-shadow: 0 0 0 3px rgba(0, 153, 204, 0.1);
}
.completion-select {
	width: 85px;
	padding: 6px 8px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	background: white;
	height: 34px;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232b3e50' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 8px center;
	background-size: 12px;
	cursor: pointer;
}
/* Totals Row */
.funding-row.totals .funding-cell {
	background: #f8f9fa;
	font-weight: 500;
	border-top: 2px solid #ddd;
}
/* Section Borders */
.funding-cell[data-section="secured"],
.column-header[data-section="secured"],
.funding-cell[data-section="unsecured"],
.column-header[data-section="unsecured"] {
	border-left: 2px solid #ddd;
}
/* Budget Layout Container */
.budget-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);  /* Match tab-content shadow */
    padding: 25px;
    overflow-x: auto;
    margin: 15px 0;
}

/* Section Headers */
.budget-sections {
    display: grid;
    grid-template-columns: 250px 200px 750px;
    min-width: 1200px;
    background: #f8f9fa;  /* Match other header backgrounds */
    border: 1px solid #ddd;
    border-radius: 6px 6px 0 0;
}

.budget-section-title {
    font-weight: 500;
    color: #2b3e50;  /* Match app's heading color */
    padding: 12px 16px;
    font-size: 14px;
    text-align: center;
    position: relative;
}

.budget-section-title.secured,
.budget-section-title.unsecured {
    border-left: 2px solid #ddd;
}

/* Budget Grid */
.budget-grid {
    display: grid;
    grid-template-columns: 
        140px  /* Phase */
        110px  /* Estimated Total */
        90px   /* Completed */
        110px  /* Amount Secured */
        90px   /* 2026 */
        90px   /* 2027 */
        90px   /* 2028 */
        90px   /* 2029 */
        90px   /* 2030 */
        90px   /* 2031 */
        110px; /* Unfunded Total */
    min-width: 1200px;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 6px 6px;
}

/* Column Headers */
.budget-headers {
    display: contents;
}

.column-header {
    padding: 12px 16px;
    font-weight: 500;
    color: #666;
    font-size: 13px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

.column-header:first-child {
    text-align: left;
}

/* Budget Rows */
.budget-row {
    display: contents;
}

.budget-cell {
    padding: 8px 16px;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.budget-cell:first-child {
    justify-content: flex-start;
    font-weight: 500;
    color: #2b3e50;
}

/* Project Plan Table Styles */
.project-plan-container {
    width: 100%;
    overflow-x: auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin: 20px 0;
}

.project-plan-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
}

/* Section Headers */
.section-headers th {
    padding: 15px 20px;
    font-weight: 500;
    color: #2b3e50;
    font-size: 14px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

/* Column Headers */
.project-plan-table th {
    padding: 12px 8px;
    font-weight: 500;
    color: #666;
    font-size: 13px;
    text-align: center;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    white-space: nowrap;
    background: white;
}

/* Section Borders */
.section-1, .section-2 {
    border-right: 1px solid #00bec8;
}

/* Table Cells */
.project-plan-table td {
    padding: 8px;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    background: white;
}

.project-plan-table td:first-child {
    font-weight: 500;
    color: #2b3e50;
    padding-left: 15px;
}

/* Input Styling */
.plan-input-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.plan-input-wrapper::before {
    content: '$';
    position: absolute;
    left: 8px;
    color: #666;
    z-index: 1;
}

.plan-input {
    width: 100%;
    padding: 6px 8px 6px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    text-align: right;
}

.plan-input:focus {
    border-color: #00bec8;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 153, 204, 0.1);
}

/* Select Styling */
.plan-select {
    width: 100%;
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background: white;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232b3e50' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 12px;
    cursor: pointer;
}

/* Totals Row */
.project-plan-table tr:last-child {
    background: #f8f9fa;
    font-weight: 500;
}

.project-plan-table tr:last-child td {
    border-top: 2px solid #ddd;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .project-plan-container {
        margin: 15px -15px;
        border-radius: 0;
    }
}

/* Funding Sources Styles */
.funding-sources-container {
    margin: 20px 0;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.add-record-btn {
    margin: 20px 0;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background-color: #0077cc;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s ease;
}

.add-record-btn:hover {
    background-color: #0066b3;
}

.funding-sources-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.funding-sources-table th,
.funding-sources-table td {
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
    line-height: 1.4;
}

.funding-sources-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.funding-sources-table td {
    vertical-align: middle;
}

.funding-sources-table input,
.funding-sources-table select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
}

.funding-sources-table input:focus,
.funding-sources-table select:focus {
    border-color: #0077cc;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 119, 204, 0.2);
}

.edit-btn,
.delete-btn,
.save-btn,
.cancel-btn {
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-btn {
    background-color: #00bec8;
}

.delete-btn {
    background-color: #757575;
}

.save-btn {
    background-color: #00bec8;
    color: white;
}

.cancel-btn {
    background-color: #9e9e9e;
}

.edit-btn:hover {
    background-color: #1e88e5;
}

.delete-btn:hover {
    background-color: #616161;
}

.save-btn:hover {
    background-color: #1e88e5;
}

.cancel-btn:hover {
    background-color: #757575;
}

/* Invalid state for inputs */
.funding-sources-table input.invalid,
.funding-sources-table select.invalid {
    border-color: #757575;
    background-color: #f5f5f5;
}

/* Responsive styles */
@media (max-width: 768px) {
    .funding-sources-container {
        margin: 16px 0;
        border-radius: 6px;
    }

    .funding-sources-table {
        display: block;
        overflow-x: auto;
    }

    .funding-sources-table th,
    .funding-sources-table td {
        padding: 10px 12px;
        font-size: 13px;
    }

    .action-buttons {
        flex-direction: column;
        gap: 6px;
    }

    .edit-btn,
    .delete-btn,
    .save-btn,
    .cancel-btn {
        width: 100%;
        padding: 8px;
    }

    .add-record-btn {
        width: 100%;
        justify-content: center;
        margin: 16px 0;
    }
}

/* Photo Form Styles */
.photo-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.description-group {
    grid-column: span 2;
}

.upload-group {
    grid-column: span 2;
}

.checkbox-group {
    grid-column: span 2;
    margin: 10px 0;
}

.photo-upload {
    padding: 10px;
    border: 2px dashed #ddd;
    border-radius: 4px;
}

.photo-upload:hover {
    background: #f0f7ff;
}

.add-photo-btn {
    background: #00bec8;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 20px;
}

.add-photo-btn:hover {
    background: #0078a3;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.checkbox-text {
    font-size: 14px;
    color: #2b3e50;
}

/* Style the date input */
input[type="date"].form-input {
    padding: 8px 12px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #2b3e50;
    background: white;
}

input[type="date"].form-input:focus {
    border-color: #00bec8;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 153, 204, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .photo-form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }

    .description-group,
    .upload-group,
    .checkbox-group {
        grid-column: 1;
    }
}

/* Form Input Modernization */
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
    background-color: white;
    color: #2b3e50;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: #00bec8;
    box-shadow: 0 0 0 3px rgba(0, 153, 204, 0.1);
    outline: none;
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
    border-color: #00bec8;
}

/* Button Modernization */
.add-record-btn,
.create-btn,
.save-btn,
#submitButton {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    background: linear-gradient(135deg, #00bec8, #00bec8);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(64, 224, 208, 0.2);
}

.add-record-btn:hover,
.create-btn:hover,
.save-btn:hover,
#submitButton:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(64, 224, 208, 0.3);
    background: linear-gradient(135deg, #00bec8, #00bec8);
}

/* Table Modernization */
.funding-sources-table {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.funding-sources-table th {
    background: #f8f9fa;
    padding: 14px 16px;
    font-weight: 500;
    color: #2b3e50;
    border-bottom: 2px solid #e0e0e0;
}

.funding-sources-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s ease;
}

.funding-sources-table tr:hover td {
    background-color: #f8fbff;
}

/* Action Buttons Modernization */

.edit-btn,
.delete-btn,
.cancel-btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-btn {
    color: white;
}

.edit-btn:hover,
.delete-btn:hover,
.cancel-btn:hover {
    transform: translateY(-1px);
    filter: brightness(110%);
}

/* Checkbox Modernization */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #00bec8;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked {
    background-color: #00bec8;
    border-color: #00bec8;
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Form Section Modernization */
.form-section {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.section-title {
    color: #2b3e50;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #00bec8;
}

/* Form Grid Layout */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #2b3e50;
    font-weight: 500;
}

/* Date Input Modernization */
input[type="date"].form-input {
    min-height: 42px;
    padding-right: 12px;
    cursor: pointer;
}

/* File Upload Modernization */
.photo-upload {
    width: 100%;
    padding: 24px;
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.2s ease;
    text-align: center;
    cursor: pointer;
}

.photo-upload:hover {
    border-color: #00bec8;
    background: #f8fbff;
}

/* Required Field Indicator */
.required {
    color: #dc3545;
    margin-right: 4px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-section {
        padding: 16px;
        margin-bottom: 16px;
    }

    .action-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .action-buttons button {
        width: 100%;
    }
}

/* Notes Column Styles */
.notes-column {
    text-align: center;
    width: 80px;
}

.notes-btn {
    background: transparent;
    border: none;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    color: #00bec8;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.notes-btn:hover {
    background: rgba(0, 153, 204, 0.1);
    transform: translateY(-1px);
}

.notes-btn i {
    font-size: 16px;
}

.notes-count {
    background: #00bec8;
    color: white;
    font-size: 12px;
    font-weight: 500;
    padding: 2px 6px;
    border-radius: 10px;
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    text-align: center;
}

.notes-count:empty {
    display: none;
}

/* Update existing table styles */
.funding-sources-table th,
.funding-sources-table td {
    padding: 12px 16px;
    text-align: left;
    vertical-align: middle;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .notes-column {
        width: auto;
    }
    
    .notes-btn {
        width: 100%;
        justify-content: center;
        padding: 10px;
    }
    
    .notes-count {
        position: static;
        margin-left: 4px;
    }
}

.edit-btn,
.save-btn,
.update-btn {
    background-color: #00bec8;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
    min-width: 70px;
}

.delete-btn {
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
    min-width: 70px;
}

.cancel-btn {
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
    min-width: 70px;
}

.edit-btn:hover,
.save-btn:hover,
.update-btn:hover {
    background-color: #007ba3;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.delete-btn:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cancel-btn:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive styles */
@media (max-width: 768px) {
    .action-buttons {
        flex-direction: column;
        gap: 4px;
    }

    .edit-btn,
    .save-btn,
    .delete-btn,
    .cancel-btn,
    .update-btn {
        width: 100%;
        margin: 2px 0;
    }
}

/* Base styles for all action buttons */
.edit-btn,
.delete-btn,
.cancel-btn,
.save-btn,
.update-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 4px;
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Edit button */
.edit-btn {
    background-color: #00bec8;
    color: #ffffff;
}

.edit-btn:hover {
    background-color: #007ba3;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.delete-btn:hover {
    background-color: #c82333;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Cancel button */
.cancel-btn {
    background-color: #6c757d;
    color: #ffffff;
}

.cancel-btn:hover {
    background-color: #5a6268;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Save button */
.save-btn {
    background-color: #28a745;
    color: #ffffff;
}

.save-btn:hover {
    background-color: #218838;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Update button */
.update-btn {
    background-color: #00bec8;
    color: #ffffff;
}

.update-btn:hover {
    background-color: #007ba3;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Action buttons container */
.action-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
}

/* Responsive styles */
@media (max-width: 768px) {
    .action-buttons {
        flex-direction: column;
        gap: 4px;
        width: 100%;
    }

    .edit-btn,
    .save-btn,
    .delete-btn,
    .cancel-btn,
    .update-btn {
        width: 100%;
        margin: 2px 0;
    }
}

/* Base Kendo button styles */
.k-button {
    /* Core button styles */
    background-clip: padding-box;
    border-radius: 2px;
    padding: 4px 8px;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.08);
    font: inherit;
    font-size: 14px;
    line-height: 1.42857143;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    
    /* Layout */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    min-width: 80px;
    margin: 0.16em;
    
    /* Interaction */
    user-select: none;
    cursor: pointer;
    position: relative;
    
    /* Default appearance */
    color: #656565;
    background-color: #f6f6f6;
    background-image: linear-gradient(#f6f6f6, #f1f1f1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
}

/* Focus and hover states */
.k-button:focus,
.k-button:hover {
    text-decoration: none;
    outline: none;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
}

/* Grid command cell buttons */
.k-command-cell > .k-button {
    margin: 0.16em;
    vertical-align: middle;
}

/* Grid edit and delete buttons */
.k-grid-edit,
.k-grid-delete {
    min-width: 80px;
    margin: 2px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.06);
}

.k-grid-edit {
    color: white;
    background: #00bec8;
    /* background-image: linear-gradient(#00bec8, #0088bb); */
}

.k-grid-edit:hover {
    background: #007ba3;
    /* background-image: linear-gradient(#007ba3, #006d8f); */
}

.k-grid-delete {
    color: white;
    background: #dc3545;
    background-image: linear-gradient(#dc3545, #c82333);
}

.k-grid-delete:hover {
    background: #c82333;
    background-image: linear-gradient(#f5871f, #e67e22);
}

.add-file-btn {
	background: #00bec8;
	max-width: 200px;

}

.upload-btn {
	background-color: #0066b3;
}

/* Action buttons base styles */
.delete-btn,
.save-btn,
.cancel-btn,
.update-btn,
.upload-btn,
.add-file-btn {
    /* Core styles */
    padding: 6px 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    min-width: 80px;
    
    /* Layout */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0.16em;
    
    /* Interaction */
    cursor: pointer;
    transition: all 0.2s ease;
    
    /* Appearance */
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.edit-btn:hover,
.update-btn:hover {
    background: #007ba3;
    /* background-image: linear-gradient(#007ba3, #006d8f); */
}

.save-btn {
    background: #00bec8;
    /* background-image: linear-gradient(#00bec8, #0088bb); */
}

.save-btn:hover {
    background: #0078a3;
    /* background-image: linear-gradient(#0078a3, #006d8f); */
}

.cancel-btn {
    background: #6c757d;
    /* background-image: linear-gradient(#6c757d, #5a6268); */
}

.cancel-btn:hover {
    background: #5a6268;
    /* background-image: linear-gradient(#5a6268, #4e555b); */
}

/* Hover effects for all action buttons */
.edit-btn:hover,
.delete-btn:hover,
.save-btn:hover,
.cancel-btn:hover,
.update-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .action-buttons {
        flex-direction: column;
        gap: 4px;
        width: 100%;
    }

    .edit-btn,
    .delete-btn,
    .save-btn,
    .cancel-btn,
    .update-btn {
        width: 100%;
        margin: 2px 0;
    }
}

/* Chapter Resolution Styles - Updated */
.chapter-resolution-container {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-bottom: 30px;
}

/* Submission Instructions Styles */
.submission-steps {
    background-color: #f5f9fc;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0f0ff;
    margin: 10px 0 25px 0;
}

.step {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0f0ff;
}

.step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.step-label {
    font-weight: 600;
    color: #2b3e50;
    min-width: 70px;
    padding-right: 15px;
}

.step-content {
    flex: 1;
    color: #495057;
    line-height: 1.5;
}

.document-link {
    color: #0099cc;
    text-decoration: none;
    font-weight: 500;
}

.document-link:hover {
    text-decoration: underline;
}

.resolution-form {
    max-width: 100%;
    margin: 0;
}

.resolution-form .form-grid {
    display: grid;
    grid-template-columns: 150px 200px 1fr 250px;
    gap: 20px;
    align-items: start;
    margin-bottom: 20px;
}

.resolution-form .form-group {
    margin: 0;
}

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

.resolution-form .form-group label {
    display: block;
    margin-bottom: 6px;
    color: #2b3e50;
    font-weight: 500;
    font-size: 13px;
}

.resolution-form .form-input,
.resolution-form .form-select {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.resolution-form .form-textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    resize: vertical;
    min-height: 36px;
    transition: all 0.2s ease;
}

.resolution-form .file-upload-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.resolution-form .add-file-btn {
    padding: 8px 16px;
    background: #00bec8;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    height: 36px;
    white-space: nowrap;
}

.resolution-form .add-file-btn:hover {
    background: #0078a3;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 153, 204, 0.2);
}

.resolution-form .form-actions {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    text-align: right;
}

.resolution-form .submit-btn {
    padding: 8px 24px;
    /* background: linear-gradient(135deg, #00bec8, #00a8e0); */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    height: 36px;
}

.resolution-form .submit-btn:hover {
    background: linear-gradient(135deg, #0078a3, #00bec8);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 153, 204, 0.2);
}

/* Resolution Records Grid */
.form-section {
    margin-top: 30px;
}

#resolutionGrid {
    margin-top: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

.view-document-link {
    color: #0099cc;
    text-decoration: none;
    font-weight: 500;
}

.view-document-link:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .resolution-form .form-grid {
        grid-template-columns: 150px 200px 1fr;
    }
    
    .resolution-form .file-upload-wrapper {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .chapter-resolution-container {
        padding: 15px;
    }

    .resolution-form .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .resolution-form .form-group {
        margin-bottom: 0;
    }

    .resolution-form .submit-btn {
        width: 100%;
    }
    
    .submission-steps {
        padding: 15px;
    }
    
    .step {
        flex-direction: column;
        gap: 5px;
    }
    
    .step-label {
        padding-right: 0;
    }
}

.reports-container {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.reports-container .form-section {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.export-format-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.toggle-label {
    font-weight: 500;
    color: #495057;
}

.toggle-buttons {
    display: flex;
    gap: 10px;
}

.toggle-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    color: #495057;
    transition: all 0.2s ease;
}

.toggle-btn:hover {
    background-color: #f8f9fa;
    border-color: #00bec8;
    color: #00bec8;
}

.toggle-btn.active {
    background-color: #00bec8;
    border-color: #00bec8;
    color: #fff;
}

.reports-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px 0;
}

.report-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    text-align: left;
}

.report-btn:hover {
    background-color: #f8f9fa;
    border-color: #00bec8;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.report-icon {
    font-size: 20px;
    color: #00bec8;
    width: 24px;
    text-align: center;
}

.report-title {
    font-size: 18px;
    color: #495057;
    flex: 1;
}

.report-btn:hover .report-title {
    color: #00bec8;
}

@media (max-width: 768px) {
    .reports-container {
        padding: 15px;
    }

    .export-format-toggle {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .report-btn {
        padding: 12px 15px;
    }
}

/* Utilities Section Styles */
.utilities-container {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

.utilities-container .utilities-button-grid {
    display: flex;
    gap: 60px;
    margin: 25px 0;
}

.utilities-container .utilities-button {
    text-decoration: none;
    display: block;
    }

.utilities-container .utilities-button .utility-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    font-size: 14px;
    font-weight: 500;
    color: #00bec8;
    transition: all 0.2s ease-in-out;
    min-height: 60px;
    max-height: 80px;
    text-align: center;
    line-height: 1.4;
    width: 100%;
    }

.utilities-container .utilities-button .utility-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    background-color: #f8fbff;
    border-color: #00bec8;
}

.utilities-container .utilities-button .utility-button span {
    padding: 0 10px;
    display: block;
    width: 100%;
    font-size: 14px;
    }

/* Responsive adjustments */
@media (max-width: 768px) {
.utilities-container {
    padding: 15px;
}

    .utilities-container .utilities-button-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 15px 0;
    }

    .utilities-container .utilities-button .utility-button {
        font-size: 13px;
        padding: 12px;
        min-height: 50px;
    }
}

/* Budget Review Grid Styles - Updated */
.status-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 5px 0;
}

.status-radio-group {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.radio-option {
    display: flex;
    align-items: center;
    margin-bottom: 2px;
}

.radio-option input[type="radio"] {
    margin-right: 8px;
    vertical-align: middle;
}

.radio-option label {
    font-weight: normal;
    cursor: pointer;
}

.option-section {
    display: flex;
    flex-direction: column;
}

.option-details {
    padding: 12px;
    background-color: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    border-left: 3px solid #6c757d;
}

.option-details.active {
    border-left-color: #00bec8;
}

.option-label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
}

.form-input {
    width: 100%;
    padding: 6px 8px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 12px;
}

.form-input:disabled {
    background-color: #e9ecef;
    cursor: not-allowed;
}

.option-select {
    margin-bottom: 12px;
}

.option-textarea {
    width: 100%;
    min-height: 60px;
    padding: 8px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    resize: vertical;
}

/* Quarters Grid */
.quarters-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 10px;
}

.quarter-option {
    display: flex;
    align-items: center;
}

.quarter-option input[type="radio"] {
    margin-right: 6px;
}

/* Chapter Column */
.chapter-column {
    display: flex;
        flex-direction: column;
    gap: 8px;
    }
    
.chapter-link {
    color: #0099cc;
    text-decoration: underline;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 5px;
}

.chapter-info {
        display: flex;
        flex-direction: column;
    gap: 5px;
    }
    
.info-item {
        display: flex;
    justify-content: space-between;
}

.info-item .amount {
    font-weight: 600;
}

/* Action Links */
.action-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.action-links a {
    color: #0099cc;
    text-decoration: none;
}

.action-links a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .status-radio-group {
        flex-direction: column;
        gap: 5px;
    }
    
    .quarters-grid {
        grid-template-columns: 1fr;
    }
    
    .form-input {
        font-size: 13px;
    }
}

/* General grid styling */
.k-grid td {
    vertical-align: top;
    padding: 12px;
}

.k-grid th {
    text-align: left;
    font-weight: 600;
}

/* Chapter Fund Balance Form Styles - Updated to match fund balances */
.chapter-fund-balance-form-container {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.chapter-form-instructions {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.chapter-form-instructions p {
    margin: 0 0 10px;
    color: #555;
    line-height: 1.5;
}

.chapter-form-instructions .example {
    color: #00bec8;
    font-style: italic;
}

.chapter-compliance-status {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
}

#chapter-compliance-indicator {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
}

#chapter-compliance-indicator.out-of-compliance {
    background-color: #ffebee;
    color: #d32f2f;
}

#chapter-compliance-indicator.has-errors {
    background-color: #fff3e0;
    color: #ef6c00;
}

#chapter-compliance-indicator.in-compliance {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.chapter-fund-balance-form {
    margin-top: 20px;
    overflow-x: auto;
}

.chapter-fund-balance-form-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    margin-bottom: 20px;
    min-width: 1200px; /* Ensure table doesn't shrink too much */
}

.chapter-fund-balance-form-table th,
.chapter-fund-balance-form-table td {
    padding: 8px;
    border: 1px solid #ddd;
    text-align: left;
    height: 40px; /* Match the height of the original form */
    vertical-align: middle;
}

.chapter-fund-balance-form-table th {
    background-color: #f8f9fa;
    font-weight: 500;
    color: #333;
    position: sticky;
    top: 0;
    z-index: 1;
    white-space: nowrap;
}

.chapter-fund-balance-form-table td:first-child {
    width: 60px;
    text-align: center;
}

.chapter-fund-balance-form-table td:nth-child(2) {
    width: 180px;
    white-space: nowrap;
}

.chapter-fund-input {
    width: 100%;
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: right;
    font-size: 14px;
    height: 30px; /* Match the height of the original form */
}

.chapter-fund-input:focus {
    border-color: #00bec8;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 153, 204, 0.2);
}

.chapter-fund-input.error {
    border-color: #d32f2f;
    background-color: #ffebee;
}

.chapter-fund-input.disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.chapter-subtotal-row,
.chapter-total-row {
    background-color: #f8f9fa;
    font-weight: 500;
}

.chapter-total-row {
    background-color: #e3f2fd;
}

.chapter-subtotal,
.chapter-subtotal-2,
.chapter-total {
    text-align: right !important;
    padding-right: 15px !important;
    font-weight: 500;
}

.chapter-add-other-fund-container {
    margin: 20px 0;
    text-align: left;
}

#chapter-add-other-fund-btn {
    padding: 8px 16px;
    background-color: #fff;
    border: 1px solid #00bec8;
    color: #00bec8;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    height: 36px;
}

#chapter-add-other-fund-btn:hover {
    background-color: #f0f7ff;
}

.chapter-form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.chapter-fiscal-year-navigation {
    display: flex;
    gap: 10px;
}

.chapter-fiscal-year-navigation .action-button {
    padding: 8px 16px;
    background-color: #fff;
    border: 1px solid #00bec8;
    color: #00bec8;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    height: 36px;
    font-size: 14px;
    font-weight: 500;
}

.chapter-fiscal-year-navigation .action-button:hover {
    background-color: #f0f7ff;
}

#chapter-submit-fund-balance {
    padding: 8px 24px;
    background-color: #00bec8;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    height: 36px;
    font-size: 14px;
}

#chapter-submit-fund-balance:hover {
    background-color: #0078a3;
}

.other-fund-input-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.other-fund-name {
    flex: 1;
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    height: 30px;
    font-size: 14px;
}

.remove-other-fund {
    background: none;
    border: none;
    color: #d32f2f;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.remove-other-fund:hover {
    background-color: #ffebee;
}

/* Responsive styles */
@media (max-width: 768px) {
    .chapter-fund-balance-form-container {
        padding: 15px;
        margin: 10px;
    }

    .chapter-fund-balance-form {
        margin-top: 15px;
    }

    .chapter-form-navigation {
        flex-direction: column;
        gap: 15px;
    }

    .chapter-fiscal-year-navigation {
        width: 100%;
        justify-content: space-between;
    }

    #chapter-submit-fund-balance {
        width: 100%;
        justify-content: center;
    }
}

/* Add month status styles */
.month-status {
    display: block;
    font-size: 12px;
    margin-top: 4px;
}

.month-status a {
    color: #28a745;
    text-decoration: none;
    padding: 2px 6px;
    border-radius: 3px;
    background-color: #e8f5e9;
    transition: all 0.2s ease;
}

.month-status a.closed {
    color: #dc3545;
    background-color: #ffebee;
}

.month-status a:hover {
    opacity: 0.8;
}

/* Capital Grid Action Button Styles */
.capital-grid-actions {
    display: flex;
    gap: 4px;
    justify-content: flex-start;
}

.capital-grid-actions .k-button {
    min-width: auto;
    padding: 4px 8px;
    background-color: #f6f6f6;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    color: #656565;
    font-size: 14px;
    line-height: 1.42857143;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    box-shadow: none;
    transition: all 0.2s ease;
}

.capital-grid-actions .k-button:hover {
    background-color: #ededed;
    border-color: rgba(0, 0, 0, 0.15);
    color: #656565;
    box-shadow: none;
    transform: none;
}

.capital-grid-actions .k-button:active {
    background-color: #e6e6e6;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

/* Icon styles */
.action-icon {
    font-size: 14px;
    line-height: 1;
    display: inline-block;
    width: 16px;
    height: 16px;
    text-align: center;
}

.edit-icon::before {
    content: "✏️";
    font-size: 12px;
}

.delete-icon::before {
    content: "🗑️";
    font-size: 12px;
}

/* Override any conflicting button styles */
.capital-grid-actions .edit-btn,
.capital-grid-actions .delete-btn {
    background-color: #f6f6f6;
    color: #656565;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: none;
    transform: none;
}

.capital-grid-actions .edit-btn:hover,
.capital-grid-actions .delete-btn:hover {
    background-color: #ededed;
    color: #656565;
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: none;
    transform: none;
}