/* public/styles/blueprint.css */

/* The Main Container */
.blueprint-container {
    background-color: #1e293b; /* Deep Blueprint Blue */
    background-image: 
      linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px; /* Grid paper look */
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 2rem;
    font-family: 'Fira Code', 'Courier Prime', monospace; /* Tech Font */
    max-width: 500px;
    margin: 0 auto; /* Center it */
    position: relative;
    box-shadow: 10px 10px 0px rgba(0,0,0,0.2);
  }
  
  /* Decorative Screws in corners */
  .screw {
    position: absolute;
    font-size: 20px;
    color: rgba(255,255,255,0.3);
    pointer-events: none;
    line-height: 1;
  }
  .top-left { top: 10px; left: 10px; }
  .top-right { top: 10px; right: 10px; }
  .bottom-left { bottom: 10px; left: 10px; }
  .bottom-right { bottom: 10px; right: 10px; }
  
  /* Typography */
  .blueprint-title {
    text-transform: uppercase;
    border-bottom: 2px dashed rgba(255,255,255,0.3);
    padding-bottom: 10px;
    margin-bottom: 25px;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-align: center;
    color: #fbbf24; /* Amber */
  }
  
  /* Inputs */
  .input-group {
    margin-bottom: 20px;
  }
  .input-group label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 8px;
    letter-spacing: 1px;
  }
  .input-group input {
    width: 100%;
    box-sizing: border-box; /* Fixes padding issues */
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.4);
    color: #fbbf24; /* Amber text */
    padding: 12px;
    font-family: inherit;
    font-size: 1.1rem;
  }
  .input-group input:focus {
    outline: none;
    border-color: #fbbf24;
    background: rgba(0,0,0,0.5);
  }
  
  /* Buttons */
  .toggle-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
  }
  .blueprint-btn-small {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.7);
    padding: 5px 15px;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
  }
  .blueprint-btn-small:hover {
    border-color: white;
    color: white;
  }
  .blueprint-btn-small.active {
    background: rgba(255,255,255,0.1);
    border-color: #fbbf24;
    color: #fbbf24;
    font-weight: bold;
  }
  
  .blueprint-execute-btn {
    width: 100%;
    background: #fbbf24; /* Amber accent */
    color: #1e293b;
    border: none;
    padding: 15px;
    font-family: inherit;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
    text-transform: uppercase;
    transition: background 0.2s;
  }
  .blueprint-execute-btn:hover {
    background: #f59e0b;
  }
  
  /* Result Box */
  .blueprint-result {
    margin-top: 25px;
    border: 2px solid #fbbf24;
    padding: 20px;
    text-align: center;
    background: rgba(251, 191, 36, 0.1);
    animation: fadeIn 0.5s ease;
  }
  .blueprint-result .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 5px;
  }
  .blueprint-result .value {
    font-size: 3.5rem;
    color: #fbbf24;
    font-weight: bold;
    line-height: 1;
    margin: 10px 0;
  }
  .blueprint-result .unit {
    font-size: 0.9rem;
    letter-spacing: 3px;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }