/* General styling for the test completion container */
.test-complete-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

/* Styling for the heading */
.test-complete-container h1 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Paragraph styling */
.test-complete-container p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}


.button-custom {
    appearance: none; /* Remove default system appearance */
    background-color: #4A90E2; /* Change to a different shade of blue */
    border: none; /* No borders for a cleaner look */
    border-radius: 20px; /* Slightly less rounded corners */
    box-sizing: border-box;
    color: #FFFFFF; /* Keep text white for contrast */
    cursor: pointer;
    display: inline-block;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px; /* Slightly larger text */
    font-weight: bold; /* Bold text */
    letter-spacing: normal; /* Standard letter spacing */
    line-height: 24px;
    margin-right: 10px;
    outline: none;
    overflow: visible;
    padding: 8px 12px; /* Adjust padding */
    text-align: center;
    text-transform: none; /* No uppercase to reduce aggressiveness */
    touch-action: manipulation;
    transform: translateZ(0);
    transition: background-color 0.3s, transform 0.2s; /* Smooth background and transform transitions */
    user-select: none;
    vertical-align: middle;
    white-space: nowrap;
    width: auto; /* Auto width based on content */
  }

  .button-custom:hover {
    background-color: #357ABD; /* Darker shade of blue on hover */
    transform: scale(1.05); /* Slight scale to give feedback */
  }

  .button-custom:active {
    background-color: #285A8F; /* Even darker for active state */
    transform: scale(0.95); /* Slight shrink effect on click */
  }
