﻿/* modern-box.css */

.modern-box {
  max-width: 85%;
  margin: 30px auto;
  padding: 20px 25px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f8faff, #e9f0ff);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-left: 6px solid #2a58ad;
  color: #0d2d6c;
  font-family: "Roboto", sans-serif;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.modern-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.modern-box h2 {
  margin-top: 0;
  font-size: 1.4rem;
  color: #1b3f8b;
}

.modern-box p {
  margin: 12px 0;
  line-height: 1.5;
}

.modern-box pre {
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 12px 0;
  line-height: 1.5;
}
.modern-box small {
  display: block;
  margin-top: 10px;
  color: #444;
  font-size: 0.85em;
}

p { 
   font-size: 12px;
   }

table { 
     border-color: navy;
     padding: 10px;
     margin: auto;
     width: 40%;
     border-collapse: collapse;
     background-color: white;
     margin: 20px auto; /* Center the table */
        }

td {
  border: 0.5px solid navy;
  padding: 2px;
  text-align: center;
}

.td-left {
  text-align: left;
}

.td-center {
  text-align: center;
}

th {
  border: 0.5px solid white;
  padding: 2px;
  color: white;
  text-align: center;
}

</style>

