body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: auto;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.container:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn2 {
  border-radius: 3rem;
  padding: 0.5rem 1.5rem;
  border: 2px solid black;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s ease-in;
  text-wrap: nowrap;
  float: right;
}

.copy-btn:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

pre {
    background: #f9f9f9;
    border-left: 5px solid #007bff;
    padding: 15px;
    border-radius: 5px;
    overflow: auto;
    font-size: 14px;
    line-height: 1.5;
}

code {
    color: #333;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #28a745;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateY(-20px);
    opacity: 0;
    z-index: 1000;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

.hidden {
    display: none;
}

@media screen and (max-width: 1276px) {
    .container {
        margin-top: 20px;;
    }

    .btn2 {
        margin-left: 5px;
    }
}

