.wrap {
    background-color: #ffffff;
    padding: 80px;
    margin: 60px auto;
    border-radius: 12px;
    max-width: 700px;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.06);
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
}

.wrap .behamics-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.wrap .behamics-header img {
    width: 48px;
    height: 48px;
}

.wrap h1 {
    font-size: 26px;
    margin: 0;
    color: #060a23;
}

.wrap p {
    font-size: 16px;
    color: #333;
    margin-bottom: 16px;
}

.wrap textarea {
    font-size: 14px;
    padding: 14px;
    width: 100%;
    max-width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #f5f5f5;
    resize: none;
    margin-bottom: 24px;
    font-family: monospace;
}

.wrap .button-row {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 20px;
}

.wrap .dashboard-button,
.wrap .copy-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    color: white;
    background-color: #060a23;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.wrap .dashboard-button:hover,
.wrap .copy-button:hover {
    background-color: #1a1f3d;
}