/* Ensure the container has consistent margin */
.container {
    margin-top: 20px; /* Adjust as needed */
}

/* Main Heading Styling */
.main-heading {
    font-size: 3rem;
    color: #007bff;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px; /* Increased bottom margin for better spacing */
    letter-spacing: 1px;
}

.short-url {
    font-size: 1.5rem;
    font-weight: bold;
    word-break: break-all; /* To handle long URLs gracefully */
}

.original-url {
    font-size: 0.875rem;
    color: #6c757d; /* Bootstrap's secondary color for dimming */
    word-break: break-all; /* To handle long URLs gracefully */
}

.copy-btn {
    font-size: 1rem;
    padding: 0.375rem 0.75rem;
    border-radius: 0.25rem;
}

.input-group-custom {
    display: flex;
    align-items: center;
}

/* Card Styling */
.card {
    margin-top: 20px;
    max-width: 900px; /* Adjust width as needed */
    margin-left: auto;
    margin-right: auto;
}

/* Additional Info Section Styling */
section {
    margin-top: 40px; /* Add margin for spacing */
    padding: 20px; /* Add padding for better layout */
}

.text-left {
    text-align: left;
}

.text-left h3 {
    font-size: 1.75rem;
    margin-bottom: 10px;
}

.text-left p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px; /* Add bottom margin for spacing */
}

/* Features Section Styling */
.feature {
    padding: 20px;
}

.feature-icon {
    font-size: 3rem;
    color: #007bff; /* Adjust color as needed */
    margin-bottom: 10px;
}
footer {
    background-color: #343a40; /* Light black color */
    color: #f8f9fa; /* Light text color */
}

footer a {
    color: #f8f9fa; /* Light text color for links */
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline; /* Underline on hover for links */
}

footer ul {
    padding-left: 0; /* Remove default padding for list */
}

footer li {
    margin-bottom: 10px; /* Spacing between list items */
}
