html, body {
	position: relative;
	width: 100%;
	height: 100%;
}

body {
	color: #333;
	margin: 0;
	padding: 8px;
	box-sizing: border-box;
	font-size: 14px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	text-align: center;
	padding: 1rem;
	background-color: #f1f1f1;
}

.logo{
    font-size: 2rem;
    font-weight: 900;
	font-family: Arial, Helvetica, sans-serif;
}

a {
	color: rgb(0,100,200);
	text-decoration: none;
}

.entry-content{
	margin: 100px 50px;
}

a:hover {
	text-decoration: underline;
}

h1.app-title {
	font-size: 1.2rem;
	margin-bottom: 1rem;
	font-weight: 500;
}

/* a:visited {
	color: rgb(0,80,160);
} */

label {
	display: block;
}

input, button, select, textarea {
	font-family: inherit;
	font-size: inherit;
	-webkit-padding: 0.4em 0;
	padding: 0.4em;
	margin: 0 0 0.5em 0;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 2px;
	max-width: 100%;
}

input:disabled {
	color: #ccc;
}

button {
	color: #333;
	background-color: #f4f4f4;
	outline: none;
}

button:disabled {
	color: #999;
}

button:not(:disabled):active {
	background-color: #ddd;
}

button:focus {
	border-color: #666;
}


/* Main Menu */
header {
	width: 100%;
	/* background-color: rgba(0, 0, 0, 0.8); */
	padding: 1rem 0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	background-color: #f4f4f4;
	border-bottom: 1px solid #ddd;
}
nav {
	display: flex;
	justify-content: center;
	gap: 1.5rem; /* Space between links */
}
nav a {
	color: #333;
	text-decoration: none;
	/* font-size: 1.0rem; */
	transition: color 0.3s ease;
	font-weight: 500;
	vertical-align: middle;
	align-items: center;
	margin-top: auto;
	margin-bottom: auto;
}
nav a:hover {
	color: #737373; /* Change color on hover */
}

/* Table */
#table-app, #billing-page {
	padding-top: 50px;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  body {
    padding: 8px 10px;
  }

  header nav {
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0 10px;
  }

  #table-app, #billing-page {
    padding-top: 70px;
  }

  /* Remove negative left offset from main sheet table */
  .main-table {
    margin-left: 0 !important;
  }

  /* Tabs that used float should stack naturally */
  .tab-button {
    float: none !important;
    width: 100%;
    text-align: center;
  }
}


/* Pricing */

#pricing-page h1{
	text-align: center;
}


#pricing-page p{
	text-align: center;
}


.pricing-table {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	margin-top: 50px;
}

.pricing-card {
	padding: 1.5rem;
	border: 1px solid #ccc;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	background-color: #fff;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	width: 300px;
}

.pricing-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.pricing-card h2 {
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
	color: #333;
	font-weight: 600;
}

.pricing-card .price {
	text-align: left;
	color: #777;
}


.feature-list {
	list-style-type: none;
	padding: 0;
}

.feature-list li {
	margin-bottom: 0.5rem;
}



.black-button{
    background-color: #333 !important;
    color: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    font-size: 11px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  }

  .blue-button{
    background-color: #007bff;
    color: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;

    font-size: 11px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  }


  /* Table */

  table {
    position: relative;
    width: 100%;
    border-collapse: collapse;
    /* scroll-behavior: smooth; */
    max-width: 100%;
    overflow-x: auto;
    display: block;
    /* margin-left:-65px; */
  }

  .main-table{
	margin-left:-65px;
  }
  th,
  td {
    border: 1px solid #ddd;
    padding: 8px;
    word-wrap: break-word;
    max-width: 300px;
    overflow: visible;
    white-space: normal;
    min-width: 100px;
  }
  th {
    background-color: #3f3f3f;
    position: relative;
    color: white;
  }
  td {
    position: relative;
  }
