        @keyframes blink {
            50% {
                opacity: 0;
            }
        }
        body {
            padding-top: 80px;
        }
        
    /* STEP 44: Record chart title styling */
	.record-chart-title {
		background: #c40824;/*linear-gradient(45deg, #c40824, #f76000, #c40824);  Sets a gradient background */
		width: 100%; /* Makes the title box span the full width of its container */
		font-size: 1.5rem; /* Sets the font size to 1.5 times the root font size */
		color: #FFFFFF; /* Sets the text color to black */
		padding: 20px; /* Adds 20px of space inside the box on all sides */
		text-align: center; /* Centers the text horizontally within the box */
		font-weight: bold; /* Makes the text bold */
		display: inline-block; /* Allows the element to behave as an inline-block container */
	}
	.uniform-btn {
		min-height: 60px;
		height: 60px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 1.5rem;
		padding: 0 20px;
		text-align: center;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		text-decoration: none;
	}

        /* STEP 46: 3D button with yellow and black colors */
        .record-chart-links a.btn-3d.uniform-btn {
            margin: 5px;
            color: #FFFFFF;
            background: linear-gradient(45deg, #c40824, #f76000, #c40824);
            border: 2px solid #CCCCCC;
            border-radius: 8px;
            box-shadow: 0 5px #999999;
            transition: all 0.2s ease-in-out;
            font-weight: bold;
            width: 100%;
            text-decoration: none;
        }
        .record-chart-links a.btn-3d.uniform-btn:hover {
            background: #f30101;
            box-shadow: 0 3px #666666;
            transform: translateY(-2px);
			color: #FFFFFF;
        }
        .record-chart-links a.btn-3d.uniform-btn:active {
            background: #f30101;
            box-shadow: 0 1px #333333;
            transform: translateY(1px);
        }
        .record-chart-links a.btn-3d.uniform-btn:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.5);
        }
        .record-chart-links a.btn-3d.uniform-btn {
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* STEP 47: Responsive button styling for large and small devices */
        @media (min-width: 992px) {
            .record-chart-links a.btn-3d.uniform-btn {
                height: 70px;
                font-size: 1.4rem;
                padding: 0 16px;
            }
        }
        @media (max-width: 576px) {
            .record-chart-links a.btn-3d.uniform-btn {
                font-size: 1.2rem;
                padding: 0 16px;
                height: 50px;
            }
        }

        /* STEP 48: Gradient header style for Q&A section */
.gradient-header {
    background: linear-gradient(45deg, #c40824, #f76000, #c40824);
    color: black;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}


        /* STEP 49: Answer text styling */
        .answer-text-small {
            font-size: 1rem;
            text-align: center;
        }

        /* STEP 50: Table headers styling */
        .custom-table-header th {
            background-color: #737373;
            color: #FFFFFF;
            font-weight: bold;
            text-align: center;
        }

        /* STEP 51: Year header styling */
        .year-header {
            background-color: #1A1A1D;
            color: #000000;
            font-weight: bold;
            text-align: center;
        }

        /* STEP 52: Date column styling */
        .custom-date-column {
            background: linear-gradient(45deg, #c40824, #f76000, #c40824);
            color: black !important;
            font-weight: bold;
            text-align: center;
        }

        /* STEP 53: Chart table data center alignment */
        .chart-table td {
            text-align: center;
            vertical-align: middle;
        }

        /* STEP 54: Blinking text reduce motion preference */
        @media (prefers-reduced-motion: reduce) {
            .blinking-text {
                animation: none;
            }
        }

        /* Floating "Back to Index" Button */
        .back-to-index {
            position: fixed;
            bottom: 60px;
            right: 10px;
            z-index: 9999;
            
            display: inline-flex;
            align-items: center;
            justify-content: center;

            width: 50px;
            height: 50px;
            border-radius: 50%;

            background-color: #24a0ed; 
            color: #000;
            text-decoration: none;

            font-size: 1.2rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.2);

            transition: background-color 0.2s ease-in-out, transform 0.2s;
        }
        .back-to-index:hover {
            background-color: #FFC107;
            transform: translateY(-2px);
        }
        .back-to-index:active {
            transform: translateY(1px);
        }