/*Write your custom css in this file.*/
.whisper-mode-toggle {
    background-color: rgb(0 0 0 / 64%);
    cursor: pointer;
    display: inline-block;
    align-items: center;
    padding: 0.5rem 0.75rem;
}

.whisper-mode-toggle .form-check-input {
    margin: 0 0.5rem 0 0;
}

.whisper-mode-toggle.active {
    background-color: #2a2c2e;  /* Bootstrap primary color */
    color: white;
}

.whisper-background {
    background-color: #d3cccc !important; 
  }

.whisper-background .comment-row {
    background-color: #e4e4e4 !important; 
  }
  
  
.copy-toast {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    animation: fadeInOut 2s ease;
    z-index: 1000;
}

@keyframes fadeInOut {
    0% { opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}
  