/* General Styles */
/* Welcome Screen Styles */
.linkcreator-welcome {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.linkcreator-welcome h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.linkcreator-welcome .lead {
    font-size: 1.25rem;
    color: #7f8c8d;
}

.linkcreator-welcome .card {
    border: none;
    transition: transform 0.2s ease-in-out;
}

.linkcreator-welcome .card:hover {
    transform: translateY(-5px);
}

.linkcreator-welcome .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #34495e;
}

.linkcreator-welcome .card-text {
    font-size: 1rem;
    color: #7f8c8d;
}

.linkcreator-welcome .btn-primary {
    padding: 10px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: #3498db;
    border: none;
    transition: background-color 0.3s ease;
}

.linkcreator-welcome .btn-primary:hover {
    background-color: #2980b9;
}

.linkcreator-welcome .text-muted a {
    color: #3498db;
    text-decoration: none;
}

.linkcreator-welcome .text-muted a:hover {
    text-decoration: underline;
}

/* .button-primary {
    background: #2271b1;
    border-color: #2271b1;
    width: 100%;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
}

.button-primary:hover {
    background: #135e96;
    border-color: #135e96;
} */

/* Add Bootstrap 5 styling */
.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

/* General Styles */
/* body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f7;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
} */

.linkcreator-wrap {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.linkcreator-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

/* Card Styles */
.card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.card-content {
    padding: 25px;
}

.card-title {
    font-size: 1.75rem;
    font-weight: 500;
    color: #34495e;
    margin-bottom: 15px;
}

.card-description {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 20px;
}

/* Connection Status */
.connection-status {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.connection-status strong {
    font-weight: 500;
    margin-right: 10px;
    color: #34495e;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.status-badge.connected {
    background-color: #27ae60;
    color: #fff;
}

.status-badge.not-connected {
    background-color: #e74c3c;
    color: #fff;
}

/* Forms */
.form-label {
    font-weight: 500;
    color: #34495e;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #3498db;
    outline: none;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button-primary {
    background-color: #3498db;
    color: #fff;
}

.button-primary:hover {
    background-color: #2980b9;
}

/* App Password Section */
.app-password-display {
    background-color: #ecf0f1;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.app-password-display strong {
    font-weight: 500;
    color: #34495e;
}

#linkcreator-app-password {
    font-family: 'Courier New', Courier, monospace;
    color: #e74c3c;
    font-weight: 500;
}

/* Response Messages */
.response-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.response-message .notice {
    padding: 10px;
    border-radius: 8px;
}

.response-message .notice-success {
    background-color: #d5f5e3;
    color: #27ae60;
}

.response-message .notice-error {
    background-color: #f8d7da;
    color: #e74c3c;
}

/* Additional Information */
.support-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.support-link:hover {
    text-decoration: underline;
}