/* Style général */
@font-face {
	font-family: "Avenir LT Light";
	src: url(../css/fonts/Avenir-Light.woff) format("woff"), url(../css/fonts/Avenir-Light.woff2) format("woff2");
}

body {
	font-family: "Avenir LT Light";
	background-color: #f8f9fa;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Vue d'une application */
.app-view {
    min-height: 70vh;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Responsive : ajustement des cartes */
@media (max-width: 576px) {
    .app-card {
        margin-bottom: 15px;
    }
}

.app-card {
	border: 1px solid #dee2e6;
	border-radius: 10px;
	overflow: hidden;
	transition: transform 0.2s, box-shadow 0.2s;
	height: 120px; /* Hauteur fixe pour uniformité */
	margin-bottom: 20px;
	cursor:pointer;
}

.app-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Style pour la section icône + titre/description */
.app-card-body {
	display: flex;
	height: 100%;
	padding: 15px;
}

.app-icon-container {
	width: 25%; /* 1/4 de la largeur */
	display: flex;
	align-items: center;
	justify-content: center;
}

.app-icon {
	max-width: 120px;
	max-height: 120px;
	object-fit: contain;
}

.app-info-container {
	width: 75%; /* 3/4 de la largeur */
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left: 15px;
}

.app-title {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 5px;
	color: #333;
}

.app-description {
	font-size: 0.9rem;
	color: #666;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2; /* Limite à 2 lignes */
	-webkit-box-orient: vertical;
}

.vpn-banner {
  position: absolute;
  top: 35px;
  right: 0px;
  width: 80px;
  height: 20px;
  background-color: #FF8C00;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  transform-origin: right bottom;
  font-weight: bold;
  font-size: 12px;
  z-index: 10;
  box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.2);
}
/* ADAPT NAVIGATION BAR MENUS
*/
@media (max-width: 768px) {
  .verySmallScreens{ 
    display:inline-block;
  }
  .largeScreens{
    display:none !important;
  }
  .verySmallScreensFlex{
  display:inline-flex;
  }
  .largeScreensFlex{
    display:none;
  }
  .profil-nav-title{
    font-size:0.8em;
  }
  .profil-nav-location{
    font-size:0.8em;
  }
}

@media (min-width: 767px) {
  .verySmallScreens{
    display:none !important;
  }
  .largeScreens{
    display:inline-block;
  }
  .verySmallScreensFlex{
  display:none;
  }
  .largeScreensFlex{
    display:inline-flex;
  }
  .profil-nav-info{
    width:300px;
  }
}
