/* Global Font and Body Styling */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f4f7fa;
    color: #343a40;
}

/* Full-width banner */
.banner img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Main Content Styling */
h1 {
    font-weight: 700;
    color: #2c3e50;
}

p.lead {
    font-size: 1.25rem;
    color: #7f8c8d;
}

/* Card Styling */
.card {
    border-radius: 15px;
    border: none;
    background-color: #ffffff;
}

.card-title {
    font-weight: 700;
    font-size: 1.5rem;
    color: #2c3e50;
}

.webhook-url {
    font-size: 1.25rem;
    color: #2980b9;
    word-break: break-all;
}

/* Button Styling */
.btn-primary {
    background-color: #3498db;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-outline-primary {
    border-radius: 50px;
    font-size: 1.2rem;
    border: 2px solid #3498db;
    color: #3498db;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #3498db;
    color: white;
}

/* Add spacing between buttons */
.mt-3 {
    margin-top: 1rem;
}

.mb-3 {
    margin-bottom: 1rem;
}
