/* vCard Custom Styles */
.san-francisco-card {
	background-color: #ffffff;
	border-radius: 0.5rem;
	padding: 1.5rem;
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* Modal styles for fallback */
.modal {
	display: none;
	position: fixed;
	z-index: 1050;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
}

.modal.show {
	display: block;
}

.modal-dialog {
	position: relative;
	width: auto;
	margin: 1.75rem auto;
	max-width: 500px;
}

.modal-dialog-centered {
	display: flex;
	align-items: center;
	min-height: calc(100% - 3.5rem);
}

.modal-content {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	background-color: #fff;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 0.3rem;
	box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.5);
}

.modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1040;
	width: 100vw;
	height: 100vh;
	background-color: #000;
	opacity: 0.5;
}

.modal-open {
	overflow: hidden;
}

.san-francisco-logo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
}

.san-francisco-button {
	padding: 0.75rem 1rem;
	border-radius: 0.375rem;
	transition: background-color 0.15s ease-in-out;
}

.san-francisco-button:hover {
	background-color: #f8f9fa;
}

.icon {
	width: 40px;
	height: 40px;
	background-color: #f8f9fa;
}

.svg-sm {
	width: 20px;
	height: 20px;
}

.text-gray-600 {
	color: #6c757d;
}

.text-gray-500 {
	color: #adb5bd;
}

.btn-gray-100 {
	background-color: #f8f9fa;
	color: #212529;
	border: none;
}

.btn-gray-200 {
	background-color: #e9ecef;
	color: #212529;
	border: none;
}

.altum-animate {
	animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
