.ccghc-yp-location-tag {
	font-size: 0.9rem;
	border-radius: 0.5rem;
    padding: 0.25rem;
	background-color: lightgray;
    color: #2d3436;
	white-space: nowrap;
}

/* Style for the search input */
#ccghc-yp-search-input {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  outline: none;
  display: inline-block;
  line-height: normal;
}

#ccghc-yp-search-input:focus {
  border-color: #007cba;
}

/* Style for the search button */
#ccghc-yp-search-button {
	padding: 8px 16px;
	border: none;
	border-radius: 4px;
	background-color: #007bff;
	color: #fff;
	font-size: 14px;
	cursor: pointer;
	display: inline-block;
	line-height: normal;
}

#ccghc-yp-search-button:hover {
	background-color: rgb(0, 86, 179);
}

#ccghc-yp-toolkits {
    border-collapse: collapse;
	margin-top:  10px;
	display: block;
	overflow-x: auto;
}

#ccghc-yp-toolkits th {
	background-color: #007bff;
    color: white;
	padding: 10px;
	font-size: 14px;
}

#ccghc-yp-toolkits td {
	border: 1px solid #dddddd;
	padding: 10px;
}

#ccghc-yp-toolkits tr:nth-child(even) {
	background-color: #f2f2f2;
}

#ccghc-yp-toolkits tr:hover {
	background-color: #cce5ff;
}

/* Styles for the dropdown */
.ccghc-yp-dropdown {
	padding: 8px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	color: #333;
	outline: none;
}

select {
	padding: 8px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	color: #333;
	outline: none;
}

#ccghc-yp-admin {
	margin-top: 20px;
	margin-right: 20px;
}
/* Style the tabs */
.tab {
	overflow: hidden;
	/* border: 1px solid #ccc; */
	background-color: #1d2327;
}

/* Style the tab links */
.tab button {
	background-color: inherit;
	float: left;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 14px 16px;
	transition: 0.3s;
	color: #ddd;
}

/* Change background color of tabs on hover */
.tab button:hover {
	background-color: #ddd;
	color: #1d2327;
}

/* Create an active/current tablink class */
.tab button.active {
	background-color: #ccc;
	color: #1d2327;
}

/* Style the tab content */
.tab-content {
	display: none;
	padding: 20px;
	border-top: none;
}

/* Style the active tab content */
.tab-content.active {
	display: block;
}

.container {
	display: grid;
	grid-template-columns: 1fr 1fr; /* Two columns */
	gap: 20px; /* Gap between columns */
}

.table-container {
	padding-top: 10px;
	height: 75vh;
	overflow-y: auto;
	overflow-x: hidden;
}

.table-container tr:hover {
	background-color: #cce5ff !important;
}

.table-container tr.active {
	background-color: #cce5ff !important;
}

.table-container tr {
	cursor: pointer;
}

.ccghc-yp-form-container {
	padding-top: 10px;
	margin-top: 10px;
}

.ccghc-yp-form-container label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
}

.ccghc-yp-form-container input[type="text"], input[type="url"] {
	width: 100%;
	padding: 8px;
	margin-bottom: 10px;
	box-sizing: border-box;
	border: 1px solid #ddd;
	border-radius: 3px;
}

.ccghc-yp-form-container select {
    width: 100%;
	max-width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: white;
    font-size: 16px;
	line-height: 1em;
}

.ccghc-yp-form-container .ss-main {
    margin-bottom: 10px;
}

.ccghc-yp-form-submit {
	display: inline-block;
	margin-top: 10px;
	margin-right: 5px;
	background-color: rgb(0, 123, 255);
	color: white;
	padding: 10px 10px;
	border: none;
	cursor: pointer;
	border-radius: 3px;
	font-size: 16px;
}

.ccghc-yp-form-submit:hover {
	background-color: rgb(0, 86, 179);
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #1d2327;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 0.8rem;
}

.ccghc-yp-order-btn-group {
	text-align: center;
}

.ccghc-yp-order-btn {
    background-color: rgb(0, 123, 255);
    border: none;
    color: white;
    padding: 6px 12px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

/* Darken button on hover */
.ccghc-yp-order-btn:hover {
    background-color: rgb(0, 86, 179);
}

tr:first-child .btn-up,
tr:last-child .btn-down {
    display: none;
}