/* custom_styles.css */

  .page-wrapper {
    max-width: 100% !important;
    background: var(--color--white);
  }

  .main-content {
    width: 100% !important;
  }


  .notification {
    position: fixed;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    border-radius: 5px;
    z-index: 9999;
  }



  .become-grey-card {
    padding: 20px;
    margin: 0 auto;
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    border-radius: 5px;
    transition: background-color 0.5s, box-shadow 0.5s, border-radius 0.5s;
  }

  .next-button-main{

    padding: 18px 36px;
    background-color: #2563eb;
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 0px;
    float: right;
  }

  .next-button-main:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
  }

  @keyframes flashRedAndRapidJiggleButton {
    0% {
        background-color: #ff0000;
        border-color: #ff0000 ;
        transform: translate(0, 0);
    }
    10% {
        transform: translate(-2px, -2px);
    }
    20% {
        transform: translate(2px, 2px);
    }
    30% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(2px, -2px);
    }
    50% {
        background-color: #ff0000;
        border-color: #ff0000 ;
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    70% {
        transform: translate(-2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
    90% {
        transform: translate(-2px, -2px);
    }
    100% {
        background-color: #2563eb;
        border-color: #2563eb ;
        transform: translate(0, 0);
    }
  }

  .flash-animation-red {
    animation: flashRedAndRapidJiggleButton 1s ease-in-out;
  }

  .success-message-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #dff0d8;
    border: 1px solid #d6e9c6;
    border-radius: 4px;
    color: #3c763d;
    font-size: 18px;
    font-weight: bold;
    max-width: 600px;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .success-message-icon {
    margin-right: 10px;
    font-size: 24px;
  }

  .success-message-text {
    flex-grow: 1;
  }

  #field-overview th, #field-overview td {
    padding: 10px;
  }

  pre.sf-dump .sf-dump-protected{
    color: #fff !important;
  }

pre.sf-dump .sf-dump-str{
    color: #00fd4c !important;
  }

.view-based-button {
    appearance: button;
    backface-visibility: hidden;
    background-color: #405cf5;
    border-radius: 6px;
    border-width: 0;
    box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset, rgba(50, 50, 93, .1) 0 2px 5px 0, rgba(0, 0, 0, .07) 0 1px 1px 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    font-family: -apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Ubuntu,sans-serif;
    font-size: 100%;
    height: 44px;
    line-height: 1.15;
    margin: 12px 0 0;
    outline: none;
    overflow: hidden;
    padding: 0 25px;
    position: relative;
    text-align: center;
    text-transform: none;
    transform: translateZ(0);
    transition: all .2s, box-shadow .08s ease-in;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: 100%;
  }

.view-based-button:disabled {
    cursor: default;
  }

.view-based-button:focus {
    box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset, rgba(50, 50, 93, .2) 0 6px 15px 0, rgba(0, 0, 0, .1) 0 2px 2px 0, rgba(50, 151, 211, .3) 0 0 0 4px;
  }

.course-chapter-block{
  margin-left: 10px;
}