html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
/* Profil Sayfası Özel Tasarımı */
.profile-card {
    max-width: 450px;
    margin: 20px auto;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #003366; /* Kurumsal Lacivert */
    object-fit: cover;
    margin-bottom: 15px;
}

.btn-vcard {
    background-color: #003366;
    color: white;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin: 15px 0;
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.icon-item {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.icon-item i {
    display: block;
    font-size: 24px;
    color: #003366;
    margin-bottom: 5px;
}