/* style.css - default dark theme for Vue.js dashboard */

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
  }
  
  #app {
    max-width: 1216px;
    margin: 2rem auto;
    padding: 1rem;
    background-color: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  }
  
  a, button {
    color: #90caf9;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: bold;
  }
  
  button {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background-color: #1976d2;
    color: white;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #1565c0;
  }
  
  input, select, textarea {
    background-color: #2c2c2c;
    color: #ffffff;
    border: 1px solid #424242;
    border-radius: 4px;
    padding: 0.5rem;
    margin: 0.5rem 0;
    width: 100%;
  }
  
  p {
    line-height: 1.6;
  }
  
  [v-cloak] {
    display: none;
  }
  
  .modal {
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5); /* semi-transparent black */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .modal button {
    margin-right: 10px;
  }
  
  .modal-content {
    background-color: #222;
    padding: 2em;
    border-radius: 8px;
    width: 300px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    color: #fff;
  }
  
  .error {
    color: #f66;
    font-weight: bold;
    margin-bottom: 0.5em;
  }


  ul.snapshot {
    list-style: none;
    padding-left: 0;
  }
  
  ul.snapshot li::before {
    display: inline-block;
    width: 1.5em;
    margin-right: 0.5em;
  }
  
  ul.snapshot li.success::before {
    content: '✅';
  }
  
  ul.snapshot li.failure::before {
    content: '❌';
  }
  
  ul.snapshot li.pending::before {
    content: '⚠️';
  }
  ul.snapshot li.processing::before {
    content: '⏳';
  }
  
  @keyframes dashAnimation {
    from {
      border-color: black;
    }
    to {
      border-color: red;
    }
  }
  
  .animated-dash {
    border-width: 3px;
    border-style: dashed;
    animation: dashAnimation 0.5s infinite alternate;
  }