.x_panel {
	position: relative;
	width: 100%;
	margin-bottom: 10px;
	padding: 10px 17px;
	background: #fff;
	border: 1px solid #E6E9ED;
	transition: all .2s ease;
}
.description-text {
	background-color: #f8f9fa; border-radius: 5px; padding: 5px; border: 1px solid #e0e0e0; word-wrap: break-word; font-size: 0.8rem;
}
.x_title {
	border-bottom: 2px solid #E6E9ED;
	padding: 1px 5px 6px;
	margin-bottom: 10px;
}
.x_title .filter {
	width: 100%; /* Changed to 100% for better responsiveness */
	float: right;
}
.x_title h2 {
	margin: 5px 0 6px;
	float: left;
	display: block;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
.x_title h2 small {
	margin-left: 10px;
}
.x_title span {
	color: #BDBDBD;
}
.x_content {
	padding: 0 5px 6px;
	margin-top: 5px;
}
.x_content h4 {
	font-size: 1.25rem; /* Increased font size for better readability */
	font-weight: 500;
}

.timeline h2.title {
	position: relative;
	font-size: 1rem; /* Adjusted font size for better responsiveness */
	margin: 0;
}
.timeline h2.title:before {
	content: "";
	position: absolute;
	left: -23px;
	top: 3px;
	display: block;
	width: 14px;
	height: 14px;
	border: 3px solid #d2d3d2;
	border-radius: 14px;
	background: #f9f9f9;
}
.timeline .byline {
	padding: .25em 0;
}
.byline {
	-webkit-font-smoothing: antialiased;
	font-style: italic;
	font-size: .875em; /* Adjusted font size for better responsiveness */
	line-height: 1.3;
	color: #aab6aa;
}
ul.timeline li {
	position: relative;
	border-bottom: 1px solid #e8e8e8;
	clear: both;
}
.timeline .block {
	margin: 0;
	border-left: 3px solid #e8e8e8;
	overflow: visible;
	padding: 10px 15px;
	margin-left: 5%; /* Adjusted margin for better responsiveness */
}
.timeline.widget {
	min-width: 0;
	max-width: inherit;
}
.timeline.widget .block {
	margin-left: 5px;
}
.timeline .tags {
	position: absolute;
	top: 15px;
	left: 0;
	width: 84px;
}
.timeline .tag {
	display: block;
	height: 30px;
	font-size: 13px;
	padding: 8px;
}
.timeline .tag span {
	display: block;
	overflow: hidden;
	width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.tag {
	line-height: 1;
	background: #1ABB9C;
	color: #fff !important;
}
.tag:after {
	content: " ";
	height: 30px;
	width: 0;
	position: absolute;
	left: 100%;
	top: 0;
	margin: 0;
	pointer-events: none;
	border-top: 14px solid transparent;
	border-bottom: 14px solid transparent;
	border-left: 11px solid #1ABB9C;
}
.dashboard-widget-content {
	padding-top: 9px;
}
.dashboard-widget-content .sidebar-widget {
	width: 100%; /* Changed to 100% for better responsiveness */
	display: inline-block;
	vertical-align: top;
	background: #fff;
	border: 1px solid #abd9ea;
	border-radius: 5px;
	text-align: center;
	padding: 2px;
	margin-top: 10px;
}
@media (max-width: 768px) {
	.x_title .filter {
		width: 100%; /* Full width on smaller screens */
		float: none; /* Remove float for better stacking */
	}
	.x_content h4 {
		font-size: 1rem; /* Smaller font size on mobile */
	}
}
.recaptcha-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* reCAPTCHA Styling */
.grecaptcha-badge {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
    border-radius: 4px !important;
    bottom: 24px !important;
    transition: all 0.3s ease !important;
    opacity: 0.9 !important;
}

.grecaptcha-badge:hover {
    opacity: 1 !important;
    transform: scale(1.02) !important;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15) !important;
}

/* reCAPTCHA Error Message Styling */
.recaptcha-error {
    color: #dc3545;
    font-size: var(--font-size-sm);
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    background-color: rgba(220, 53, 69, 0.1);
    border-radius: 4px;
    border-left: 3px solid #dc3545;
    display: flex;
    align-items: center;
}

.recaptcha-error::before {
    content: '\f071';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 0.5rem;
    color: #dc3545;
}

/* reCAPTCHA Info Message */
.recaptcha-info {
    font-size: var(--font-size-xs);
    color: #6c757d;
    text-align: center;
    margin-top: 0.5rem;
    padding: 0.25rem;
}

/* reCAPTCHA Container */
.recaptcha-container {
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}