hr {
    padding: 0.8rem;
    margin: 2rem;
    border: none;
    border-top: 0;
    border-bottom: 1px solid #fff;
}

/* Docs list with white bullets and text */
.docs-list {
    color: #fff;
    list-style-type: disc;
    margin-left: 2rem;
}

.docs-list li {
    color: #fff;
}

a.bg-cyan-600,
a.bg-cyan-600:hover,
a.bg-cyan-600:focus {
    text-decoration: none !important;
    cursor: pointer;
    color: #000 !important;
}

/* Button-style links (e.g., Get Started) */
a.bg-cyan-600,
a.bg-cyan-600:hover,
a.bg-cyan-600:focus {
    text-decoration: none !important;
    cursor: pointer;
}

/*
 * Main stylesheet for BadGuyAlarm web UI
 * Move all inline and embedded styles here.
 */

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f8f9fa;
    color: #222;
    margin: 0;
    padding: 0;
}

.font-sans {
    font-family: Helvetica, Arial, sans-serif;
}

.font-bold {
    font-weight: bold;
}

.no-underline {
    text-decoration: none;
}

/* Hero beacon background */
.hero-beacon-bg {
    background-image: url('/images/hero-beacon.png');
}

/* Animated pulse ring */
.pulse-ring {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 9999px;
    border: 2px solid rgba(0, 255, 255, 0.2);
    animation: pulse 4s infinite ease-out;
}

.pulse-delay-1 {
    animation-delay: 1s;
}

.pulse-delay-2 {
    animation-delay: 2s;
}

@keyframes pulse {
    0% {
        transform: scale(0.6);
        opacity: 0.6;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

/* Soft sci-fi glow */
.glow {
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.15),
        0 0 80px rgba(0, 255, 255, 0.08);
}

/* Docs prose background override */
.prose,
.prose-invert {
    background: transparent !important;
}

/* Error page styles */
div.logo {
    height: 200px;
    width: 155px;
    display: inline-block;
    opacity: 0.08;
    position: absolute;
    top: 2rem;
    left: 50%;
    margin-left: -73px;
}

body.error-page {
    height: 100%;
    background: #fafafa;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #777;
    font-weight: 300;
}

h1.error-title {
    font-weight: lighter;
    letter-spacing: normal;
    font-size: 3rem;
    margin-top: 0;
    margin-bottom: 0;
    color: #222;
}

.wrap {
    max-width: 1024px;
    margin: 5rem auto;
    padding: 2rem;
    background: #fff;
    text-align: center;
    border: 1px solid #efefef;
    border-radius: 0.5rem;
    position: relative;
}

pre {
    white-space: pre-wrap;
    margin-top: 1.5rem;
}

code {
    background: #4e4e4e;
    border: 1px solid #efefef;
    padding: 0.5rem 1rem;
    margin: 0.5rem 1rem;
    border-radius: 5px;
    display: block;
}

p {
    margin-top: 1.5rem;
}

.footer {
    margin-top: 2rem;
    border-top: 1px solid #efefef;
    padding: 1em 2em 0 2em;
    font-size: 85%;
    color: #999;
}

a {
    color: #fff;
    text-decoration: underline;
}

nav a,
.btn,
a.button,
a.no-underline,
button a {
    text-decoration: none !important;
}

a:hover,
a:focus {
    color: #67e8f9;
}

a:visited {
    color: #fff;
}

/* Add more rules as you extract them from Views */