/*=====================================================================*\
|| ###################################################################
|| # Bugdar
|| # Copyright (c)2002-2007 Blue Static
|| #
|| # This program is free software; you can redistribute it and/or modify
|| # it under the terms of the GNU General Public License as published by
|| # the Free Software Foundation; version 2 of the License.
|| #
|| # This program is distributed in the hope that it will be useful, but
|| # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|| # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|| # more details.
|| #
|| # You should have received a copy of the GNU General Public License along
|| # with this program; if not, write to the Free Software Foundation, Inc.,
|| # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|| ###################################################################
\*=====================================================================*/

.field {
  display: flex;
  width: 100%;

  margin: 3px 0;

  align-items: center;
}

.field .label {
  width: 20%;

  background-color: rgb(78, 78, 78);
  font-weight: bold;
  font-size: 11px;
  color: rgb(255, 255, 255);
  padding: 3px;
  border: 1px solid rgb(0, 0, 0);
}

  .field .label a {
    color: rgb(255, 255, 255);
  }

  .field.label-line {
    flex-direction: column;
    padding: 5px;
  }

    .field.label-line .label {
      width: 100%;
    }

    .field.label-line .value {
      width: 100%;
      padding: 0;
    }

.field .value {
  width: 80%;
  padding: 3px;
  padding-left: 5px;
}

.helplink {
  border: none;
  float: right;
}
