	.leaflet-bottom {
    display: none !important;
}
.ip-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 9999;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #2a5298;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.ip-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    margin: 20px 0;
    display: none;
}

.ip-info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Arial', sans-serif;
}

.ip-header {
 /*   background: linear-gradient(135deg, #1e3c72, #2a5298); */
	background: #0CD2DF;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.ip-header h2 {
    margin: 0 0 10px;
    font-size: 24px;
}

.ip-main {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.ip-details {
    font-size: 16px;
}

.ip-map-container {
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.ip-table {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.ip-table h3 {
    margin: 0 0 15px;
/*    color: #2a5298; */
	color: #0CD2DF;
}

.ip-table table {
    width: 100%;
    border-collapse: collapse;
}

.ip-table th, .ip-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.ip-table th {
    background: #f8f9fa;
    width: 30%;
    font-weight: 600;
}

.ip-table td {
    color: #333;
}

@media (max-width: 768px) {
    .ip-table th, .ip-table td {
        display: block;
        width: 100%;
    }
}
/* Le formulaire de recherche : */
.ip-input-container {
  max-width: 1200px;
  margin: 0 auto 20px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ip-form {
  width: 100%;
  max-width: 500px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 10px;
}

.ip-form-inner {
  display: flex;
  align-items: center;
  width: 100%;
}

#ip-input {
  flex: 1;
  padding: 14px 16px; /* Padding plus grand pour un look spacieux */
  font-size: 16px;
  font-family: 'Arial', sans-serif;
  border: 1px solid #ddd;
  border-right: none;
  border-radius: 5px 0 0 5px;
  outline: none;
  box-sizing: border-box;
  line-height: 1.5;
  vertical-align: middle;
  transition: border-color 0.3s ease;
}

#ip-input:focus {
  border-color: #2a5298;
}

#ip-submit {
  margin-top: 17px;
  padding: 15px 20px;
  font-size: 16px;
  font-family: 'Arial', sans-serif;
  font-weight: 600;
  color: #fff;
/*  background: linear-gradient(135deg, #1e3c72, #2a5298); */
  background: #0CD2DF;
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  box-sizing: border-box;
  line-height: 1.5;
  vertical-align: middle;
  transition: background 0.3s ease;
}

#ip-submit:hover {
/*  background: linear-gradient(135deg, #2a5298, #1e3c72); */
  background: #000;
}

@media (max-width: 768px) {
  .ip-form {
    padding: 8px;
  }

  .ip-form-inner {
    flex-direction: column;
    gap: 10px;
  }

  #ip-input {
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
    padding: 14px 16px;
  }

  #ip-submit {
    border-radius: 5px;
    width: 100%;
    margin-top: 5px;
  }
}
	/**/
